blob: 3af299db8fa23074454fc7129cd9ede5b7658330 [file] [log] [blame]
Daniel Jasperd07c8402013-07-29 08:19:24 +00001// RUN: grep -Ev "// *[A-Z-]+:" %s > %t.cpp
2// RUN: clang-tidy %t.cpp -fix --
3// RUN: FileCheck -input-file=%t.cpp %s
4
5namespace i {
6}
7// CHECK: } // namespace i
8
9class A { A(int i); };
10// CHECK: class A { explicit A(int i); };