lin
2025-08-21 57113df3a0e2be01232281fad9a5f2c060567981
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// RUN: %clang_cc1 -fsyntax-only -pedantic -verify %s
 
namespace ImplicitInt {
  static a(4); // expected-error {{requires a type specifier}}
  b(int n); // expected-error {{requires a type specifier}}
  c (*p)[]; // expected-error {{unknown type name 'c'}}
  itn f(char *p, *q); // expected-error {{unknown type name 'itn'}} expected-error {{requires a type specifier}}
 
  struct S {
    void f();
  };
  S::f() {} // expected-error {{requires a type specifier}}
}
 
// PR7180
int f(a::b::c); // expected-error {{use of undeclared identifier 'a'}}
 
class Foo::Bar { // expected-error {{use of undeclared identifier 'Foo'}} \
                 // expected-error {{expected ';' after class}}