brintos

brintos / llvm-project-archived public Read only

0
0
Text · 292 B · 2cce899 Raw
22 lines · plain
1// RUN: %clang_cc1 -fsyntax-only -verify %s2// expected-no-diagnostics3 4enum __attribute__((deprecated)) E1 : int; // ok5enum [[deprecated]] E2 : int;6 7@interface Base8@end9 10@interface S : Base11- (void) bar;12@end13 14@interface T : Base15- (S *) foo;16@end17 18 19void f(T *t) {20  [[]][[t foo] bar];21}22