brintos

brintos / llvm-project-archived public Read only

0
0
Text · 211 B · b1888fb Raw
16 lines · cpp
1// RUN: %clang_cc1 -fsyntax-only -verify %s -Wmissing-noreturn -Wreturn-type2// expected-no-diagnostics3 4namespace GH63009 {5struct S1 {6  [[noreturn]] S1();7};8 9int foo();10 11int test_1() {12  S1 s1;13  foo();14}15}16