blob: 767d6e6ab40c8af17a31eced8cd873f8151c6b22 [file] [log] [blame]
Chris Lattner3b427b32007-10-11 00:18:28 +00001// RUN: clang %s -fsyntax-only -verify
Chris Lattnere80a59c2007-07-25 00:24:17 +00002
Chris Lattner0947b4e2008-11-24 01:28:17 +00003typedef union <anonymous> __mbstate_t; // expected-error {{declaration of anonymous union must be a definition}}
Chris Lattnerfd89bc82008-04-02 01:05:10 +00004
5
6// PR2017
7void x();
8int a() {
Chris Lattner0947b4e2008-11-24 01:28:17 +00009 int r[x()]; // expected-error {{size of array has non-integer type 'void'}}
Chris Lattnerfd89bc82008-04-02 01:05:10 +000010}
11