Home
last modified time | relevance | path

Searched refs:ExceptionIf (Results 1 – 1 of 1) sorted by relevance

/llvm-project-15.0.7/clang/test/SemaCXX/
H A Dimplicit-exception-spec.cpp3 template<bool b> struct ExceptionIf { static int f(); }; struct
4 template<> struct ExceptionIf<false> { typedef int f; }; argument
28ExceptionIf<noexcept(TemplateArg())>::f(); // expected-note {{in evaluation of exception spec}}
35 ExceptionIf<noexcept(Nested())>::f(); // expected-note {{in evaluation of exception spec}}
43 int n = ExceptionIf<noexcept(Nested2())>::f(); // expected-note {{declared here}}
61 T(int = ExceptionIf<noexcept(Default())>::f());