You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
436 B
30 lines
436 B
4 years ago
|
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 ... ???";
|
||
|
}
|
||
|
};
|
||
|
|