aboutsummaryrefslogtreecommitdiff
path: root/test/Sema/block-storageclass.c
blob: 9bfbfbd614e5992246dace4d2189994ebf78033f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// RUN: %clang_cc1 %s -fsyntax-only -verify -fblocks

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;
}