summaryrefslogtreecommitdiffstats
path: root/test/SemaTemplate/function-template-specialization-noreturn.cpp
blob: 672da2725470bcc0637cde8592baadd4f21d1b2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// RUN: %clang_cc1 -fsyntax-only -verify %s

// Split from function-template-specialization.cpp because the noreturn warning
// requires analysis-based warnings, which the other errors in that test case
// disable.

template <int N> void __attribute__((noreturn)) f3() { __builtin_unreachable(); }
template <> void f3<1>() { } // expected-warning {{function declared 'noreturn' should not return}}

#if __cplusplus >= 201103L
namespace PR21942 {
template <int>
struct A {
  void foo[[noreturn]]();
};

template <>
void A<0>::foo() {} // expected-warning{{function declared 'noreturn' should not return}}
}
#endif