aboutsummaryrefslogtreecommitdiff
path: root/test/compiler/movable.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/compiler/movable.cpp')
-rw-r--r--test/compiler/movable.cpp20
1 files changed, 0 insertions, 20 deletions
diff --git a/test/compiler/movable.cpp b/test/compiler/movable.cpp
deleted file mode 100644
index 04590b9..0000000
--- a/test/compiler/movable.cpp
+++ /dev/null
@@ -1,20 +0,0 @@
-#include <list>
-#include <vector>
-#include <string>
-
-using namespace std;
-
-struct S :
- public string
-{
-};
-
-void test()
-{
- list<S> l;
- l.push_back( S() );
-
- vector<S> v;
- v.push_back( S() );
-}
-