blob: 411f27262a74db6dd37954e5385b9ec5360a74df [file] [log] [blame]
Steve Naroff14f3f1b2008-01-14 23:33:18 +00001// RUN: clang -fsyntax-only -verify -std=c++98 %s
2
3void a (void []()); // expected-error{{'type name' declared as array of functions}}
4void b (void p[]()); // expected-error{{'p' declared as array of functions}}
5void c (int &[]); // expected-error{{'type name' declared as array of references}}
6void d (int &p[]); // expected-error{{'p' declared as array of references}}
7