blob: 39ec5c76fac964c8de87a15f96cfd2b285823256 [file] [log] [blame]
Chris Lattnerfbbc2cc2003-10-27 17:51:31 +00001
2template<class T>
3struct super {
4 int Y;
5 void foo();
6};
7
8template <class T>
9struct test : virtual super<int> {};
10
11extern test<int> X;
12
13void foo() {
14 X.foo();
15}