// RUN: %clang_cc1 -fsyntax-only -pedantic -verify %s
namespaceImplicitInt{statica(4);// expected-error {{a type specifier is required}}
b(int n);// expected-error {{a type specifier is required}}
c(*p)[];// expected-error {{unknown type name 'c'}}
itn f(char*p,*q);// expected-error {{unknown type name 'itn'}} expected-error {{a type specifier is required}}
structS{voidf();};S::f(){}// expected-error {{a type specifier is required}}
}// PR7180
intf(a::b::c);// expected-error {{use of undeclared identifier 'a'}}
classFoo::Bar{// expected-error {{use of undeclared identifier 'Foo'}} \
// expected-error {{expected ';' after class}}