brintos

brintos / llvm-project-archived public Read only

0
0
Text · 167 B · 9ee02bf Raw
12 lines · plain
1// RUN: %clang_cc1 %s -verify -fsyntax-only2// expected-no-diagnostics3 4@class NSString;5 6void c1(id *a);7 8void t1(void)9{10  NSString *s __attribute((cleanup(c1)));11}12