Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / SemaObjC / opaque-is-access.m
blobd7272d5f60af5c0e52710db77fdb92e60b9da8d0
1 // RUN: %clang -target x86_64-apple-darwin -arch arm64 -mios-version-min=7 -fsyntax-only %s -Xclang -verify
2 // RUN: %clang -target x86_64-apple-darwin -arch x86_64 -mios-simulator-version-min=7 -fsyntax-only %s -Xclang -verify
4 typedef struct objc_object {
5   struct objc_class *isa;
6 } *id;
8 @interface NSObject {
9   struct objc_class *isa;
11 @end
12 @interface Whatever : NSObject
13 +self;
14 @end
16 static void func(void) {
18   id x;
20   [(*x).isa self]; // expected-error {{direct access to Objective-C's isa is deprecated in favor of object_getClass()}}
21   [x->isa self];   // expected-error {{direct access to Objective-C's isa is deprecated in favor of object_getClass()}}