HomeSort by relevance Sort by last modified time
    Searched full:accept_t (Results 1 - 1 of 1) sorted by null

  /external/clang/test/SemaCXX/
attr-noreturn.cpp 104 template <typename T> void accept_T(T) {}
141 accept_T<void __attribute__((noreturn)) (*)(int)>(foo);
142 accept_T<void __attribute__((noreturn)) (*)(int)>(bar<int>);
143 accept_T<void __attribute__((noreturn)) (*)(int)>(bar<double>); // expected-error {{no matching function for call to 'accept_T'}}
145 accept_T<void (*)(int)>(foo);
146 accept_T<void (*)(int)>(bar<int>);
147 accept_T<void (*)(int)>(bar<double>); // expected-error {{no matching function for call to 'accept_T'}}
149 accept_T<void (int)>(foo)
    [all...]

Completed in 353 milliseconds