c++: hash table ICE with variadic alias [PR105003]
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / noexcept30.C
blob1075c69a491dffa6c69b2b175748702fa96a6d5d
1 // PR c++/69300
2 // { dg-do compile { target c++11 } }
3 // { dg-options "-fdelete-null-pointer-checks" }
5 template<typename A>
6 struct F {
7   template<typename B>
8   void f() noexcept(&F::template f<B>) {} // { dg-error "exception specification|convert|resolve" }
9 };
11 int main () {
12   F<void>().f<int>();