bolt/deps/llvm-18.1.8/clang/test/SemaObjC/legacy-implementation-1.m

12 lines
206 B
Mathematica
Raw Normal View History

2025-02-14 19:21:04 +01:00
// 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(void)
{
return pi;
}