blob: b63b9cac148370945cc8e8ae05a0cec2b2348c6f [file] [log] [blame]
// Bug: overloading of 'A' for template causes bogus shadowing warnings.
// Special g++ Options: -Wshadow
// Build don't link:
template<class T>
class A
{
public:
virtual ~A() {}
};
template class A<int>;