diff options
Diffstat (limited to 'clang/unittests/Format/FormatTest.cpp')
-rw-r--r-- | clang/unittests/Format/FormatTest.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/unittests/Format/FormatTest.cpp b/clang/unittests/Format/FormatTest.cpp index a029176eefa..7b3ea6e2f81 100644 --- a/clang/unittests/Format/FormatTest.cpp +++ b/clang/unittests/Format/FormatTest.cpp @@ -7889,6 +7889,7 @@ TEST_F(FormatTest, FormatsLambdas) { verifyFormat("constexpr char hello[]{ \"hello\" };"); verifyFormat("double &operator[](int i) { return 0; }\n" "int i;"); + verifyFormat("std::unique_ptr<int[]> foo() {}"); } TEST_F(FormatTest, FormatsBlocks) { |