minix/external/bsd/llvm/dist/clang/test/Sema/block-storageclass.c
Lionel Sambuc f4a2713ac8 Importing netbsd clang -- pristine
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
2014-07-28 17:05:57 +02:00

19 lines
328 B
C

// RUN: %clang_cc1 %s -fsyntax-only -verify -fblocks
// expected-no-diagnostics
int printf(const char *, ...);
void _Block_byref_release(void*src){}
int main() {
__block int X = 1234;
__block const char * message = "HELLO";
X = X - 1234;
X += 1;
printf ("%s(%d)\n", message, X);
X -= 1;
return X;
}