7 lines
158 B
C++
7 lines
158 B
C++
|
class C {};
|
||
|
|
||
|
void f() { // This comment necessary to prevent formatting as void f() { ... }
|
||
|
C *a = new C();
|
||
|
// CHECK: {{^\ \ auto\ a\ \=\ new\ C\(\);}}
|
||
|
}
|