annotate clang/test/SemaObjC/DoubleMethod.m @ 207:2e18cbf3894f

LLVM12
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Tue, 08 Jun 2021 06:07:14 +0900
parents 1d019706d866
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
150
anatofuz
parents:
diff changeset
1 // RUN: %clang_cc1 -Wduplicate-method-match -fsyntax-only -verify -Wno-objc-root-class %s
anatofuz
parents:
diff changeset
2
anatofuz
parents:
diff changeset
3 @interface Subclass
anatofuz
parents:
diff changeset
4 {
anatofuz
parents:
diff changeset
5 int ivar;
anatofuz
parents:
diff changeset
6 }
anatofuz
parents:
diff changeset
7
anatofuz
parents:
diff changeset
8 - (void) method; // expected-note {{previous declaration is here}}
anatofuz
parents:
diff changeset
9 - (void) method; // expected-warning {{multiple declarations of method 'method' found and ignored}}
anatofuz
parents:
diff changeset
10 @end
anatofuz
parents:
diff changeset
11
anatofuz
parents:
diff changeset
12 @implementation Subclass
anatofuz
parents:
diff changeset
13 - (void) method {;} // expected-note {{previous declaration is here}}
anatofuz
parents:
diff changeset
14 - (void) method {;} // expected-error {{duplicate declaration of method 'method'}}
anatofuz
parents:
diff changeset
15 @end
anatofuz
parents:
diff changeset
16
anatofuz
parents:
diff changeset
17 int main (void) {
anatofuz
parents:
diff changeset
18 return 0;
anatofuz
parents:
diff changeset
19 }