summaryrefslogtreecommitdiffstats
path: root/test/SemaCXX/qualified-names-print.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/SemaCXX/qualified-names-print.cpp')
-rw-r--r--test/SemaCXX/qualified-names-print.cpp15
1 files changed, 0 insertions, 15 deletions
diff --git a/test/SemaCXX/qualified-names-print.cpp b/test/SemaCXX/qualified-names-print.cpp
deleted file mode 100644
index 2099268..0000000
--- a/test/SemaCXX/qualified-names-print.cpp
+++ /dev/null
@@ -1,15 +0,0 @@
-// RUN: %clang_cc1 -ast-print %s 2>&1 | grep "N::M::X<INT>::value"
-namespace N {
- namespace M {
- template<typename T>
- struct X {
- enum { value };
- };
- }
-}
-
-typedef int INT;
-
-int test() {
- return N::M::X<INT>::value;
-}
OpenPOWER on IntegriCloud