bolt/deps/llvm-18.1.8/clang/test/SemaObjC/pedantic-dynamic-test.m
2025-02-14 19:21:04 +01:00

16 lines
250 B
Objective-C

// RUN: %clang_cc1 -fsyntax-only -verify -pedantic -Wno-objc-root-class %s
// expected-no-diagnostics
@interface I
{
int window;
}
@property int window, noWarningNeeded;
@end
@implementation I
@synthesize window;
@dynamic noWarningNeeded;
@end