diff options
Diffstat (limited to 'test/Sema/types.c')
-rw-r--r-- | test/Sema/types.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/Sema/types.c b/test/Sema/types.c index 7ab4e0672c..1232e472ea 100644 --- a/test/Sema/types.c +++ b/test/Sema/types.c @@ -30,3 +30,7 @@ int i[(short)1]; enum e { e_1 }; extern int j[sizeof(enum e)]; // expected-note {{previous definition}} int j[42]; // expected-error {{redefinition of 'j' with a different type}} + +// rdar://6880104 +_Decimal32 x; // expected-error {{GNU decimal type extension not supported}} + |