From 01ecd3107e6475722249deee010755690f0a91be Mon Sep 17 00:00:00 2001 From: Alexander Kornienko Date: Wed, 25 Jun 2014 08:09:35 +0000 Subject: [PATCH] Added a test to ensure -Wimplicit-fallthrough works with -fblocks correctly. llvm-svn: 211676 --- .../switch-implicit-fallthrough-blocks.cpp | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 clang/test/SemaCXX/switch-implicit-fallthrough-blocks.cpp diff --git a/clang/test/SemaCXX/switch-implicit-fallthrough-blocks.cpp b/clang/test/SemaCXX/switch-implicit-fallthrough-blocks.cpp new file mode 100644 index 000000000000..9a16f2b4b402 --- /dev/null +++ b/clang/test/SemaCXX/switch-implicit-fallthrough-blocks.cpp @@ -0,0 +1,19 @@ +// RUN: %clang_cc1 -fsyntax-only -verify -fblocks -std=c++11 -Wimplicit-fallthrough %s + +void fallthrough_in_blocks() { + void (^block)() = ^{ + int x = 0; + switch (x) { + case 0: + x++; + [[clang::fallthrough]]; // no diagnostics + case 1: + x++; + default: // \ + expected-warning{{unannotated fall-through between switch labels}} \ + expected-note{{insert 'break;' to avoid fall-through}} + break; + } + }; + block(); +}