blob: 89c1f18cda1a8d988dff7d5e455c07fe82525e33 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// RUN: %clang_cc1 -fsyntax-only -verify %s
// rdar: //6854840
@interface A {@end // expected-error {{'@end' appears where closing brace '}' is expected}}
@interface B {
@public
int ivar;
@protected
id pp;
@property (copy) id PROP; // expected-error {{illegal visibility specification}}
@end
|