repo.or.cz
/
clang.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
[Heikki Kultala] This patch contains the ABI changes for the TCE target.
[clang.git]
/
test
/
SemaObjC
/
class-extension-after-implementation.m
blob
2d8a5b1d4d80547bc12c48ddd8a6072ef9aee2c9
1
// RUN: %clang_cc1 -fsyntax-only -verify %s
2
// rdar://7822210
3
4
@interface A @end
5
6
@implementation A @end // expected-note {{class implementation is declared here}}
7
8
@interface A () // expected-error {{cannot declare class extension for 'A' after class implementation}}
9
-(void) im0;
10
@end
11