2020-03-27 23:21:36 +08:00
|
|
|
// RUN: %clang_cc1 -verify -fsyntax-only -fno-recovery-ast %s
|
|
|
|
// RUN: %clang_cc1 -verify -fsyntax-only -frecovery-ast %s
|
|
|
|
|
|
|
|
void foo(); // expected-note 2{{requires 0 arguments}}
|
2020-03-27 01:42:40 +08:00
|
|
|
class X {
|
|
|
|
decltype(foo(42)) invalid; // expected-error {{no matching function}}
|
|
|
|
};
|
|
|
|
// Should be able to evaluate sizeof without crashing.
|
|
|
|
static_assert(sizeof(X) == 1, "No valid members");
|
2020-03-27 23:21:36 +08:00
|
|
|
|
|
|
|
class Y {
|
|
|
|
typeof(foo(42)) invalid; // expected-error {{no matching function}}
|
|
|
|
};
|
|
|
|
// Should be able to evaluate sizeof without crashing.
|
|
|
|
static_assert(sizeof(Y) == 1, "No valid members");
|
2020-06-16 15:25:17 +08:00
|
|
|
|
|
|
|
class Z {
|
|
|
|
int array[sizeof(invalid())]; // expected-error {{use of undeclared identifier}}
|
|
|
|
};
|
|
|
|
// Should be able to evaluate sizeof without crashing.
|
|
|
|
static_assert(sizeof(Z) == 1, "No valid members");
|