forked from OSchip/llvm-project
18 lines
369 B
Mathematica
18 lines
369 B
Mathematica
|
// RUN: clang %s -fsyntax-only -verify
|
||
|
// rdar://5957506
|
||
|
|
||
|
@interface NSWhatever :
|
||
|
NSObject // expected-error {{cannot find interface declaration for 'NSObject'}}
|
||
|
<NSCopying> // expected-error {{cannot find protocol definition for 'NSCopying'}}
|
||
|
@end
|
||
|
|
||
|
|
||
|
// rdar://6095245
|
||
|
@interface A
|
||
|
{
|
||
|
int x
|
||
|
} // expected-error {{expected ';' at end of declaration list}}
|
||
|
@end
|
||
|
|
||
|
|