2014-01-30 Alangi Derick <alangiderick@gmail.com>
[official-gcc.git] / gcc / testsuite / g++.dg / template / dependent-args1.C
bloba540e55f4e52da420cf4e80d9c9162b1086457c0
1 // PR c++/27582
2 // { dg-do compile }
4 struct A
6   template<int> void foo();
7 };
9 template<int N, void (A::*)() = &A::foo<N> > struct B {};
11 B<int> b; // { dg-error "type/value mismatch|expected a constant|invalid type" }
13 // { dg-prune-output "could not convert" }