2017-06-14 Paolo Carlini <paolo.carlini@oracle.com>
[official-gcc.git] / gcc / testsuite / g++.dg / template / ctor9.C
blob819ca1c940107208ace4ab8e8739d79ee9374ad0
1 // PR c++/9050, DR 147, 318
3 struct Y
5   template <typename T> Y (T);
6   template <typename T> void foo (T);
7 };
9 template <>      Y::Y<int>   (int)  { }