aboutsummaryrefslogtreecommitdiff
path: root/test/SemaCXX/switch-implicit-fallthrough-regression.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/SemaCXX/switch-implicit-fallthrough-regression.cpp')
-rw-r--r--test/SemaCXX/switch-implicit-fallthrough-regression.cpp17
1 files changed, 0 insertions, 17 deletions
diff --git a/test/SemaCXX/switch-implicit-fallthrough-regression.cpp b/test/SemaCXX/switch-implicit-fallthrough-regression.cpp
deleted file mode 100644
index aec3769e00..0000000000
--- a/test/SemaCXX/switch-implicit-fallthrough-regression.cpp
+++ /dev/null
@@ -1,17 +0,0 @@
-// RUN: %clang_cc1 -fsyntax-only -verify -std=c++11 -Wimplicit-fallthrough %s
-
-void f() {
- class C {
- void f(int x) {
- switch (x) {
- case 0:
- x++;
- [[clang::fallthrough]]; // expected-no-diagnostics
- case 1:
- x++;
- break;
- }
- }
- };
-}
-