xref: /llvm-project/clang-tools-extra/test/clang-apply-replacements/Inputs/format/no.cpp (revision 59d93af4a55897b99873225249692cc7d8fe5969)
1*59d93af4SEdwin Vane class C {};
2*59d93af4SEdwin Vane 
f()3*59d93af4SEdwin Vane void f() { // This comment necessary to prevent formatting as void f() { ... }
4*59d93af4SEdwin Vane   C *a = new C();
5*59d93af4SEdwin Vane   // CHECK: {{^\ \ auto\ a\ \=\ new\ C\(\);}}
6*59d93af4SEdwin Vane }
7