diff options
Diffstat (limited to 'gcc/testsuite/objc.dg/special/load-category-3.h')
-rw-r--r-- | gcc/testsuite/objc.dg/special/load-category-3.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/gcc/testsuite/objc.dg/special/load-category-3.h b/gcc/testsuite/objc.dg/special/load-category-3.h new file mode 100644 index 000000000..9d6d8acc9 --- /dev/null +++ b/gcc/testsuite/objc.dg/special/load-category-3.h @@ -0,0 +1,17 @@ +/* Contributed by Nicola Pero <nicola.pero@meta-innovation.com>, December 2010. */ + +void complete_load_step (int load_step); +void check_that_load_step_was_completed (int load_step); +void check_that_load_step_was_not_completed (int load_step); + +@interface TestClass1 +{ + id isa; +} +@end + +@interface TestClass2 : TestClass1 +@end + +@interface TestClass3 : TestClass2 +@end |