LLVM Bugzilla is read-only and represents the historical archive of all LLVM issues filled before November 26, 2021. Use github to submit LLVM bugs

Bug 17864 - Bogus "fallthrough annotation does not directly precede switch label" warning when [[clang::fallthrough]] is used in lambda
Summary: Bogus "fallthrough annotation does not directly precede switch label" warning...
Status: RESOLVED FIXED
Alias: None
Product: clang
Classification: Unclassified
Component: C++11 (show other bugs)
Version: 3.3
Hardware: PC All
: P normal
Assignee: Alexander Kornienko
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-11-09 11:08 PST by Joe Groff
Modified: 2014-08-05 08:09 PDT (History)
3 users (show)

See Also:
Fixed By Commit(s):


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Joe Groff 2013-11-09 11:08:13 PST
This code incorrectly warns that the [[clang::falltrhrough]] annotation does not precede a switch label:

void foo(int x) {
  [&]{
    switch (x) {
    case 0:
      foo(0);
      [[clang::fallthrough]];
    case 1:
      foo(1);
    }
  }();
}

Remove the lambda [&]{ }() and the warning goes away.
Comment 1 Alexander Kornienko 2014-08-05 08:09:47 PDT
This was fixed in r211599.