Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / SemaCXX / constexpr-default-init-value-crash.cpp
blob766ca0fee00de33e21cb0de34287789afe1d898f
1 // RUN: %clang_cc1 %s -std=c++20 -fsyntax-only -verify
2 // RUN: %clang_cc1 %s -std=c++20 -fsyntax-only -verify -fno-recovery-ast
3 // RUN: %clang_cc1 %s -std=c++20 -fsyntax-only -verify -fexperimental-new-constant-interpreter
4 // RUN: %clang_cc1 %s -std=c++20 -fsyntax-only -verify -fno-recovery-ast -fexperimental-new-constant-interpreter
7 namespace NoCrash {
8 struct ForwardDecl; // expected-note {{forward declaration of}}
9 struct Foo { // expected-note 2{{candidate constructor}}
10 ForwardDecl f; // expected-error {{field has incomplete type}}
13 constexpr Foo getFoo() {
14 Foo e = 123; // expected-error {{no viable conversion from 'int' to 'Foo'}}
15 return e;