blob: b92146260ef11f66f8638f241d9b3de6b70aeeb0 [file] [log] [blame]
Chris Lattner4045a8a2007-10-11 00:18:28 +00001// RUN: clang %s -fsyntax-only -verify
Chris Lattner4b009652007-07-25 00:24:17 +00002
Douglas Gregorec93f442008-04-13 21:30:24 +00003typedef union <anonymous> __mbstate_t; // expected-error: {{declaration of anonymous union must be a definition}}
Chris Lattner67d3c8d2008-04-02 01:05:10 +00004
5
6// PR2017
7void x();
8int a() {
9 int r[x()]; // expected-error: {{size of array has non-integer type 'void'}}
10}
11