blob: 662bd738c839eaf6fca24a306c211d0f5e43729b [file] [log] [blame]
Steve Naroff9eae5762008-09-18 16:44:58 +00001// RUN: clang %s -fsyntax-only -verify
2
3#include <stdio.h>
4void _Block_byref_release(void*src){}
5
6int main() {
7 __block int X = 1234;
8 __block const char * message = "HELLO";
9
10 X = X - 1234;
11
12 X += 1;
13
14 printf ("%s(%d)\n", message, X);
15 X -= 1;
16
17 return X;
18}