aboutsummaryrefslogtreecommitdiff
path: root/test/compiler/ttei2.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/compiler/ttei2.cpp')
-rw-r--r--test/compiler/ttei2.cpp31
1 files changed, 0 insertions, 31 deletions
diff --git a/test/compiler/ttei2.cpp b/test/compiler/ttei2.cpp
deleted file mode 100644
index 68f8a18..0000000
--- a/test/compiler/ttei2.cpp
+++ /dev/null
@@ -1,31 +0,0 @@
-/*
- * It is known that this code not compiled by following compilers:
- *
- * It is known that this code compiled by following compilers:
- * gcc 2.95.3
- * gcc 3.3.3
- * gcc 3.4.1
- * MSVC 6
- * MSVC 8
- */
-
-struct A
-{
- private:
- struct B
- {
- template <typename T>
- static void f( T& ) {}
-
- template <bool V>
- struct C
- {
- };
- };
-};
-
-template <>
-struct A::B::C<true>
-{
-};
-