Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / SemaObjCXX / objcxx_openmp.mm
bloba789e2a83709be99840abc0d9114986981610fba
1 // RUN: %clang_cc1 -fopenmp -fsyntax-only -verify %s
2 // expected-no-diagnostics
4 class Foo {
5   int a;
6 };
8 @interface NSObject
9 @end
11 @interface Bar : NSObject {
12   Foo *foo;
14 - (void)setSystemAndWindowCocoa:(class Foo *)foo_1;
16 @end
18 @implementation Bar : NSObject
19 - (void)setSystemAndWindowCocoa:(Foo *)foo_1 {
20   foo = foo_1;
22 @end