annotate clang/test/SemaObjC/legacy-implementation-1.m @ 165:597b3f1c2c93

fix call createTailCallEliminationPass
author anatofuz
date Tue, 24 Mar 2020 15:30:52 +0900
parents 1d019706d866
children c4bab56944e8
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
150
anatofuz
parents:
diff changeset
1 // RUN: %clang_cc1 -fsyntax-only -verify -Wno-objc-root-class %s
anatofuz
parents:
diff changeset
2
anatofuz
parents:
diff changeset
3 @implementation INTF // expected-warning {{cannot find interface declaration for 'INTF'}}
anatofuz
parents:
diff changeset
4 @end
anatofuz
parents:
diff changeset
5
anatofuz
parents:
diff changeset
6 INTF* pi;
anatofuz
parents:
diff changeset
7
anatofuz
parents:
diff changeset
8 INTF* FUNC()
anatofuz
parents:
diff changeset
9 {
anatofuz
parents:
diff changeset
10 return pi;
anatofuz
parents:
diff changeset
11 }