mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-26 06:48:51 -04:00

The warning this inhibits, -Wobjc-root-class, is opt-in for now. However, all clang unit tests that would trigger the warning have been updated to use -Wno-objc-root-class. <rdar://problem/7446698> llvm-svn: 154187
12 lines
202 B
Objective-C
12 lines
202 B
Objective-C
// RUN: %clang_cc1 -fsyntax-only -verify -Wno-objc-root-class %s
|
|
|
|
@implementation INTF // expected-warning {{cannot find interface declaration for 'INTF'}}
|
|
@end
|
|
|
|
INTF* pi;
|
|
|
|
INTF* FUNC()
|
|
{
|
|
return pi;
|
|
}
|