aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/obj-c++.dg/ivar-list-semi.mm
blob: bac65a4be109b9dfe7c24906d3665727650b3933 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* APPLE LOCAL file Objective-C++ */
/* Allow for an optional semicolon following the ivar block.  */
/* Contributed by: Ziemowit Laski <zlaski@apple.com>.  */

#include <objc/Object.h>

@interface Tink : Object {
@private
 unsigned long mCode[4];
};
- (id)initWithProc:(void *)inProc;
- (void *)getUniqueProc;
@end