Searched refs:ExceptionIf (Results 1 – 1 of 1) sorted by relevance
3 template<bool b> struct ExceptionIf { static int f(); }; struct4 template<> struct ExceptionIf<false> { typedef int f; }; argument28 … ExceptionIf<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());