Daniel Dunbar | 8fbe78f | 2009-12-15 20:14:24 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -emit-llvm -o %t %s |
Fariborz Jahanian | 475831b | 2009-01-07 20:11:22 +0000 | [diff] [blame] | 2 | |
3 | @interface BASE | ||||
4 | + (int) BaseMeth; | ||||
5 | @end | ||||
6 | |||||
7 | @interface Child: BASE | ||||
8 | @end | ||||
9 | |||||
10 | @interface Child (Categ) | ||||
11 | + (int) flushCache2; | ||||
12 | @end | ||||
13 | |||||
14 | @implementation Child @end | ||||
15 | |||||
16 | @implementation Child (Categ) | ||||
17 | + (int) flushCache2 { [super BaseMeth]; } | ||||
18 | @end | ||||
19 |