]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/Parser/cxx-undeclared-identifier.cpp
Vendor import of clang release_38 branch r258549:
[FreeBSD/FreeBSD.git] / test / Parser / cxx-undeclared-identifier.cpp
1 // RUN: %clang_cc1 -fsyntax-only -pedantic -verify %s
2
3 namespace ImplicitInt {
4   static a(4); // expected-error {{requires a type specifier}}
5   b(int n); // expected-error {{requires a type specifier}}
6   c (*p)[]; // expected-error {{unknown type name 'c'}}
7   itn f(char *p, *q); // expected-error {{unknown type name 'itn'}} expected-error {{requires a type specifier}}
8
9   struct S {
10     void f();
11   };
12   S::f() {} // expected-error {{requires a type specifier}}
13 }
14
15 // PR7180
16 int f(a::b::c); // expected-error {{use of undeclared identifier 'a'}}
17
18 class Foo::Bar { // expected-error {{use of undeclared identifier 'Foo'}} \
19                  // expected-error {{expected ';' after class}}