summaryrefslogtreecommitdiff
path: root/test/std/strings/basic.string/allocator_mismatch.fail.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/std/strings/basic.string/allocator_mismatch.fail.cpp')
-rw-r--r--test/std/strings/basic.string/allocator_mismatch.fail.cpp18
1 files changed, 0 insertions, 18 deletions
diff --git a/test/std/strings/basic.string/allocator_mismatch.fail.cpp b/test/std/strings/basic.string/allocator_mismatch.fail.cpp
deleted file mode 100644
index 644137ec25766..0000000000000
--- a/test/std/strings/basic.string/allocator_mismatch.fail.cpp
+++ /dev/null
@@ -1,18 +0,0 @@
-//===----------------------------------------------------------------------===//
-//
-// The LLVM Compiler Infrastructure
-//
-// This file is dual licensed under the MIT and the University of Illinois Open
-// Source Licenses. See LICENSE.TXT for details.
-//
-//===----------------------------------------------------------------------===//
-
-// <string>
-// The container's value type must be the same as the allocator's value type
-
-#include <string>
-
-int main()
-{
- std::basic_string<char, std::char_traits<char>, std::allocator<int> > s;
-}