From 16dbe0bc4427e7b92b34d156603e60a89fd5f6ff Mon Sep 17 00:00:00 2001 From: Daniel Jasper Date: Wed, 14 Jan 2015 10:02:49 +0000 Subject: clang-format: [Java] Understand "import static". llvm-svn: 225965 --- clang/unittests/Format/FormatTestJava.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'clang/unittests/Format/FormatTestJava.cpp') diff --git a/clang/unittests/Format/FormatTestJava.cpp b/clang/unittests/Format/FormatTestJava.cpp index e0f2b51..9b3b993 100644 --- a/clang/unittests/Format/FormatTestJava.cpp +++ b/clang/unittests/Format/FormatTestJava.cpp @@ -369,6 +369,8 @@ TEST_F(FormatTestJava, PackageDeclarations) { TEST_F(FormatTestJava, ImportDeclarations) { verifyFormat("import some.really.loooooooooooooooooooooong.imported.Class;", getStyleWithColumns(50)); + verifyFormat("import static some.really.looooooooooooooooong.imported.Class;", + getStyleWithColumns(50)); } TEST_F(FormatTestJava, MethodDeclarations) { -- cgit v1.1