aboutsummaryrefslogtreecommitdiff
path: root/clang/test/Parser/method-def-in-class.m
blob: a847a4387a938de438da06df77152dadba84ede1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// RUN: %clang_cc1 -fsyntax-only -verify %s

@interface A
-(id) f0 { // expected-error {{expected ';' after method prototype}}
  assert(0);
}
@end

@interface C
- (id) f0 { // expected-error {{expected ';' after method prototype}}
    assert(0);
};
@end