blob: 03ce00acc451626b05173b26a9d4a7094184d4a4 [file] [log] [blame]
Chris Lattner3b427b32007-10-11 00:18:28 +00001// RUN: clang %s -fsyntax-only -verify
Chris Lattner4fc37c52007-07-21 05:32:22 +00002
3void bar (void *);
4void f11 (z) // expected-error {{may not have 'void' type}}
5void z;
6{ bar (&z); }