Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1 | // RUN: %llvmgxx -S %s -o - | llvm-as -f -o /dev/null |
2 | |||||
3 | |||||
4 | template<class T> | ||||
5 | struct super { | ||||
6 | int Y; | ||||
7 | void foo(); | ||||
8 | }; | ||||
9 | |||||
10 | template <class T> | ||||
11 | struct test : virtual super<int> {}; | ||||
12 | |||||
13 | extern test<int> X; | ||||
14 | |||||
15 | void foo() { | ||||
16 | X.foo(); | ||||
17 | } |