https://bugs.llvm.org/show_bug.cgi?id=52517
clang-format is butchering modules, this could easily become a barrier to entry for modules given clang-formats wide spread use.
Prevent the following from adding spaces around the : (cf was considering the ':' as an InheritanceColon)
import <ctime>; import foo:bar; import :bar; export module foo:bar; export import foo:bar; export import :bar; module foo:bar;
to
import<ctime>; import foo : bar; import : bar; export module foo : bar; export import foo : bar; export import : bar; module foo : bar;