blob: d9ca4b9b1f27c4d902bef93bf5adf7cb5630cbfa [file] [log] [blame]
/* APPLE LOCAL file 5932809 */
/* { dg-options "-fblocks" } */
/* { dg-do run } */
void _Block_byref_release(void*src){}
#include <stdio.h>
int main() {
__byref int X = 1234;
__byref const char * message = "HELLO\n";
X = X - 1234;
printf ("%s\n", message);
return X;
}