From 0bd4d810d4fd1e765c5f01fbb99e8efddc1e26f0 Mon Sep 17 00:00:00 2001 From: John Criswell Date: Fri, 26 Sep 2003 14:58:39 +0000 Subject: Removing these tests from the regressions directory. They now live in llvm/test/Programs/SingleSource/Regression alongside their UnitTest brethren. llvm-svn: 8722 --- .../C++Frontend/2003-06-08-VirtualFunctions.cpp | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 llvm/test/Regression/C++Frontend/2003-06-08-VirtualFunctions.cpp (limited to 'llvm/test/Regression/C++Frontend/2003-06-08-VirtualFunctions.cpp') diff --git a/llvm/test/Regression/C++Frontend/2003-06-08-VirtualFunctions.cpp b/llvm/test/Regression/C++Frontend/2003-06-08-VirtualFunctions.cpp deleted file mode 100644 index 174e5144038..00000000000 --- a/llvm/test/Regression/C++Frontend/2003-06-08-VirtualFunctions.cpp +++ /dev/null @@ -1,16 +0,0 @@ - - -struct foo { - int y; - foo(); - virtual int T() = 0; -}; - -struct bar : public foo { - bar(); - int T() {} -}; - -foo::foo() : y(4) { } -bar::bar() { } -int main() { return 0; } -- cgit v1.2.3