blob: 79a7ad65757cdbb49c33b9d117121fa10838d407 [file] [log] [blame]
struct X {
void operator-(int);
void operator+(int);
void operator()();
};
/* *INDENT-OFF* */
struct Y {
void operator-(int){}
void operator+(int){} \
void operator()(){}
void func() {
auto x = " test\t ... ???";}
};
/* *INDENT-ON* */
struct Y {
void operator-(int){}
void operator+(int){}
void operator()(){}
void func() {
auto x = " test\t ... ???";}
};