blob: 281e8a8d5c052667bae033ba29c528717a8e11ca [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
3typedef union <anonymous> __mbstate_t; // expected-error: {{expected identifier or}}
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