// RUN: %clang_cc1 -fsyntax-only -verify %s
typedef void const;
void ; // expected-error {{non-member function cannot have 'const' qualifier}}
F g; // expected-error {{non-member function of type 'F' (aka 'void () const') cannot have 'const' qualifier}}
;
;
;
S<F> s; // expected-note {{in instantiation of}}
// FIXME: This is ill-formed.
;
U<F> u;