Daniel Dunbar | a572887 | 2009-12-15 20:14:24 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -fsyntax-only -verify %s |
Steve Naroff | ed91f90 | 2009-04-02 18:37:59 +0000 | [diff] [blame] | 2 | |
3 | @interface Test {} | ||||
4 | + (Test*)one; | ||||
5 | - (int)two; | ||||
6 | @end | ||||
7 | |||||
8 | int main () | ||||
9 | { | ||||
10 | return Test.one.two; | ||||
11 | } | ||||
12 |