diff options
Diffstat (limited to 'test/FrontendC++/2003-10-27-VirtualBaseClassCrash.cpp')
-rw-r--r-- | test/FrontendC++/2003-10-27-VirtualBaseClassCrash.cpp | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/test/FrontendC++/2003-10-27-VirtualBaseClassCrash.cpp b/test/FrontendC++/2003-10-27-VirtualBaseClassCrash.cpp deleted file mode 100644 index abda017..0000000 --- a/test/FrontendC++/2003-10-27-VirtualBaseClassCrash.cpp +++ /dev/null @@ -1,17 +0,0 @@ -// RUN: %llvmgxx -S %s -o - | llvm-as -o /dev/null - - -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(); -} |