blob: 39ec5c76fac964c8de87a15f96cfd2b285823256 [file] [log] [blame]
template<class T>
struct super {
int Y;
void foo();
};
template <class T>
struct test : virtual super<int> {};
extern test<int> X;
void foo() {
X.foo();
}