Update Copyright year range in all files maintained by GDB.
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.objc / nondebug.m
CommitLineData
28f2d600
AF
1#include <objc/Object.h>
2
3@interface NonDebug: Object
4{
5}
6@end
7@interface NonDebug2: Object
8{
9}
10@end
11
12@implementation NonDebug
13
14- someMethod
15{
16 printf("method someMethod\n");
17 return self;
18}
19
20@end
21@implementation NonDebug2
22
23- someMethod
24{
25 printf("method2 someMethod\n");
26 return self;
27}
28
29@end
30
31
32int main (int argc, const char *argv[])
33{
34 id obj;
35 obj = [NonDebug new];
36 [obj someMethod];
37 return 0;
38}
This page took 1.137326 seconds and 4 git commands to generate.