================ @@ -49,3 +49,15 @@ void check() { test_type(g); test_type(h); // expected-note {{instantiation}} } + +namespace GH63009 { +struct S { + [[noreturn]] S() { throw int {}; } +}; + +int test_no_return_constructor() { S(); } // ok ---------------- AaronBallman wrote:
Also, since we're here, can you add a test to ensure that destructors also work as expected? That can be done in a separate PR if you'd like. https://github.com/llvm/llvm-project/pull/115558 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits