blob: ec467fec54041ecf25a55c41751473f0d4307c20 [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 ... ???";
}
};