repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git]
/
clang
/
test
/
Parser
/
method-def-in-class.m
blob
a847a4387a938de438da06df77152dadba84ede1
1
// RUN: %clang_cc1 -fsyntax-only -verify %s
2
3
@interface A
4
-(id) f0 { // expected-error {{expected ';' after method prototype}}
5
assert(0);
6
}
7
@end
8
9
@interface C
10
- (id) f0 { // expected-error {{expected ';' after method prototype}}
11
assert(0);
12
};
13
@end