blob: 1eae26c5aeb231b75ae3ae11c00a87c0bb3a20cb [file] [log] [blame]
Chris Lattner4fc37c52007-07-21 05:32:22 +00001// RUN: clang %s -parse-ast-check
2
3void bar (void *);
4void f11 (z) // expected-error {{may not have 'void' type}}
5void z;
6{ bar (&z); }