Index: clang/lib/Format/UnwrappedLineParser.cpp =================================================================== --- clang/lib/Format/UnwrappedLineParser.cpp +++ clang/lib/Format/UnwrappedLineParser.cpp @@ -1423,6 +1423,8 @@ case tok::coloncolon: case tok::kw_mutable: case tok::kw_noexcept: + case tok::kw_true: + case tok::kw_false: nextToken(); break; case tok::arrow: Index: clang/unittests/Format/FormatTest.cpp =================================================================== --- clang/unittests/Format/FormatTest.cpp +++ clang/unittests/Format/FormatTest.cpp @@ -11846,6 +11846,21 @@ verifyGoogleFormat("auto a = [&b, c](D* d) -> D& {};"); verifyGoogleFormat("auto a = [&b, c](D* d) -> const D* {};"); verifyFormat("[a, a]() -> a<1> {};"); + verifyFormat("[]() -> a<1> {};"); + verifyFormat("[]() -> a<1> { ; };"); + verifyFormat("[]() -> a<1> { ; }();"); + verifyFormat("[a, a]() -> a {};"); + verifyFormat("[]() -> a {};"); + verifyFormat("[]() -> a { ; };"); + verifyFormat("[]() -> a { ; }();"); + verifyFormat("[a, a]() -> a {};"); + verifyFormat("[]() -> a {};"); + verifyFormat("[]() -> a { ; };"); + verifyFormat("[]() -> a { ; }();"); + verifyFormat("auto foo{[]() -> foo { ; }};"); + verifyFormat("namespace bar {\n" + "auto foo{[]() -> foo { ; }};\n" + "} // namespace bar"); verifyFormat("auto aaaaaaaa = [](int i, // break for some reason\n" " int j) -> int {\n" " return ffffffffffffffffffffffffffffffffffffffffffff(i * j);\n"