blob: ee4b8cad63403b6890c352436b49aae40ce6ccc8 [file] [log] [blame]
Fariborz Jahanianb79e6612008-11-17 18:03:28 +00001// RUN: clang -emit-llvm -o %t %s
2
3#include <stdio.h>
4
5void foo(id a) {
6 @synchronized(a) {
7 printf("Swimming? No.");
8 return;
9 }
10}
11