blob: 29b51f4d88cc4ebf0f199525c84cd0ec3d97fd6e [file] [log] [blame]
Ted Kremenek9f3d9422007-09-26 20:14:22 +00001// RUN: clang %s -parse-ast -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); }