mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-21 23:24:12 +08:00
Added.
From-SVN: r38261
This commit is contained in:
parent
c097fab647
commit
2e82aa0fd9
16
gcc/testsuite/objc/execute/protocol.m
Normal file
16
gcc/testsuite/objc/execute/protocol.m
Normal file
@ -0,0 +1,16 @@
|
||||
@protocol Foo
|
||||
- (void)foo;
|
||||
@end
|
||||
|
||||
@interface Foo_c <Foo>
|
||||
{
|
||||
}
|
||||
- (void)foo;
|
||||
@end
|
||||
|
||||
@implementation Foo_c
|
||||
- (void)foo
|
||||
{
|
||||
}
|
||||
@end
|
||||
|
Loading…
Reference in New Issue
Block a user