Adjust v850 rotate expander to allow more cases for V850E3V5
[official-gcc.git] / gcc / testsuite / g++.dg / template / spec17.C
blob91c5d56fc478bbd3bfcafc92dccf2f2caf79c7fc
1 // PR c++/16224
3 namespace io { 
4   template <typename> int foo();
5
6  
7 using namespace io; 
8  
9 template<> int foo<int>(); // { dg-error "" }
11 int a = foo<int>();