With the following style: ``` ColumnLimit: 30 BreakBeforeBraces: Allman AllowShortLambdasOnASingleLine: All ``` The following code can be misformatted with the lambda body brace not being wrapped. (This doesn't occur when `AllowShortLambdasOnASingleLine` is `None`) Input: ```cpp void f() { std::for_each( c.begin(), c.end(), [](const auto &Item) { LongFunctionName( Item); }); } ``` Output: ```cpp void f() { std::for_each( c.begin(), c.end(), [](const auto &Item) { LongFunctionName( Item); }); } ```