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