Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / SemaObjC / rdr-6211479-array-property.m
blob873adb5dc8dcb3636313c4aa9c63210e4c533748
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
3 typedef int T[2];
5 @interface A
6 @property(assign) T p2; // expected-error {{property cannot have array or function type 'T' (aka 'int[2]')}}
7 @end