blob: b1888fbb33ccf287c97cab7b013c0229e96e1685 [file] [log] [blame]
// RUN: %clang_cc1 -fsyntax-only -verify %s -Wmissing-noreturn -Wreturn-type
// expected-no-diagnostics
namespace GH63009 {
struct S1 {
[[noreturn]] S1();
};
int foo();
int test_1() {
S1 s1;
foo();
}
}