Fariborz Jahanian | 3e7fd15 | 2007-10-16 21:52:23 +0000 | [diff] [blame] | 1 | // RUN: clang -fsyntax-only -verify %s |
2 | |||||
3 | @interface Subclass | ||||
4 | { | ||||
5 | int ivar; | ||||
6 | } | ||||
7 | |||||
8 | - (void) method; | ||||
9 | - (void) method; | ||||
10 | @end | ||||
11 | |||||
12 | @implementation Subclass | ||||
13 | - (void) method {;} // expected-error {{previous declaration is here}} | ||||
14 | - (void) method {;} // expected-error {{duplicate declaration of method 'method'}} | ||||
15 | @end | ||||
16 | |||||
17 | int main (void) { | ||||
18 | return 0; | ||||
19 | } |