blob: 819ca1c940107208ace4ab8e8739d79ee9374ad0 [file] [log] [blame]
// PR c++/9050, DR 147, 318
struct Y
{
template <typename T> Y (T);
template <typename T> void foo (T);
};
template <> Y::Y<int> (int) { }