aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.2.1/gcc/testsuite/objc.dg/sync-1.m
blob: d7035c715b50293f1f9b807acc09588dc2b35640 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* Make sure that @synchronized parses.  */
/* { dg-options "-fnext-runtime -fobjc-exceptions" } */
/* { dg-do compile } */

#include <objc/Object.h>

void foo(id sem)
{
  @synchronized (sem) { 
    return;
  }
}