brintos

brintos / llvm-project-archived public Read only

0
0
Text · 193 B · 864a7df Raw
10 lines · plain
1// Test to make sure the parser does not get stuck on the optional2// scope specifier on the type B.3// RUN: %clang_cc1 -fsyntax-only %s4 5class B;6 7@interface A8- (void) init:(::B *) foo;9@end10