1 // PR c++/65973
2 // { dg-do compile { target c++14 } }
3 
4 class foo {
foo()5   constexpr foo() noexcept { __func__; };
6 };
7