Import sorting of java file, incorrectly move import statement to after a function beginning with the word import.
Make 1 character change to regular expression to ensure there is always at least one space/tab after the word import
Previously clang-format --style="LLVM" would format
import X; class C { void m() { importFile(); } }
as
class C { void m() { importFile(); import X; } }