Add and use DominatorTreeBase::findNearestCommonDominator().
[llvm-complete.git] / test / C++Frontend / 2003-10-27-VirtualBaseClassCrash.cpp
blobf9fc80ee9407ba463a761645d9ad95905cffb5f0
1 // RUN: %llvmgxx -S %s -o - | llvm-as -f -o /dev/null
4 template<class T>
5 struct super {
6 int Y;
7 void foo();
8 };
10 template <class T>
11 struct test : virtual super<int> {};
13 extern test<int> X;
15 void foo() {
16 X.foo();