summaryrefslogtreecommitdiffstats
path: root/clang/test/SemaTemplate/non-integral-switch-cond.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'clang/test/SemaTemplate/non-integral-switch-cond.cpp')
-rw-r--r--clang/test/SemaTemplate/non-integral-switch-cond.cpp14
1 files changed, 0 insertions, 14 deletions
diff --git a/clang/test/SemaTemplate/non-integral-switch-cond.cpp b/clang/test/SemaTemplate/non-integral-switch-cond.cpp
deleted file mode 100644
index 23c8e0ef8d4..00000000000
--- a/clang/test/SemaTemplate/non-integral-switch-cond.cpp
+++ /dev/null
@@ -1,14 +0,0 @@
-// RUN: %clang_cc1 -fsyntax-only -verify %s
-
-struct NOT_AN_INTEGRAL_TYPE {};
-
-template <typename T>
-struct foo {
- NOT_AN_INTEGRAL_TYPE Bad;
- void run() {
- switch (Bad) { // expected-error {{statement requires expression of integer type ('NOT_AN_INTEGRAL_TYPE' invalid)}}
- case 0:
- break;
- }
- }
-};
OpenPOWER on IntegriCloud