aboutsummaryrefslogtreecommitdiffstats
path: root/tests/libfoo/bar.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/libfoo/bar.cpp')
-rw-r--r--tests/libfoo/bar.cpp15
1 files changed, 0 insertions, 15 deletions
diff --git a/tests/libfoo/bar.cpp b/tests/libfoo/bar.cpp
deleted file mode 100644
index a8f9712a4..000000000
--- a/tests/libfoo/bar.cpp
+++ /dev/null
@@ -1,15 +0,0 @@
-#include <iostream>
-#include "bar.h"
-
-using namespace std;
-
-void Bar::pureVirtual()
-{
- cout << "Bar::pureVirtual()" << endl;
-}
-
-void Bar::unpureVirtual()
-{
- cout << "Bar::unpureVirtual()" << endl;
-}
-