You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
432 B
25 lines
432 B
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
|
// Don't crash (PR18284).
|
|
|
|
namespace n1 {
|
|
class A { };
|
|
class C { A a; };
|
|
|
|
A::RunTest() {} // expected-error {{C++ requires a type specifier for all declarations}}
|
|
|
|
void f() {
|
|
new C;
|
|
}
|
|
} // namespace n1
|
|
|
|
namespace n2 {
|
|
class A { };
|
|
class C : public A { };
|
|
|
|
A::RunTest() {} // expected-error {{C++ requires a type specifier for all declarations}}
|
|
|
|
void f() {
|
|
new C;
|
|
}
|
|
} // namespace n2
|