OSDN Git Service

/cp
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / spec34.C
1 // PR c++/26988
2
3 struct B{};
4
5 struct Bar : virtual B {               
6   template <typename T> Bar( T const& cast );
7 };
8
9 template <> Bar::Bar( int const & cast ) {}