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] Handle __declspec() attributes in using
[llvm-project.git]
/
clang
/
test
/
Parser
/
method-def-in-class.m
blob
476ab9ba20e8ba3e4b2d63d1bde75dfb8681bba1
1
// RUN: %clang_cc1 -fsyntax-only -verify %s
2
// rdar://7029784
3
4
@interface A
5
-(id) f0 { // expected-error {{expected ';' after method prototype}}
6
assert(0);
7
}
8
@end
9
10
@interface C
11
- (id) f0 { // expected-error {{expected ';' after method prototype}}
12
assert(0);
13
};
14
@end