aboutsummaryrefslogtreecommitdiff
path: root/test/C++Frontend/2003-06-08-VirtualFunctions.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/C++Frontend/2003-06-08-VirtualFunctions.cpp')
-rw-r--r--test/C++Frontend/2003-06-08-VirtualFunctions.cpp16
1 files changed, 0 insertions, 16 deletions
diff --git a/test/C++Frontend/2003-06-08-VirtualFunctions.cpp b/test/C++Frontend/2003-06-08-VirtualFunctions.cpp
deleted file mode 100644
index 174e514403..0000000000
--- a/test/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; }