summaryrefslogtreecommitdiffstats
path: root/llvm/test/Regression/C++Frontend/2003-06-08-VirtualFunctions.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'llvm/test/Regression/C++Frontend/2003-06-08-VirtualFunctions.cpp')
-rw-r--r--llvm/test/Regression/C++Frontend/2003-06-08-VirtualFunctions.cpp16
1 files changed, 0 insertions, 16 deletions
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; }
OpenPOWER on IntegriCloud