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.
16 lines
237 B
16 lines
237 B
4 months ago
|
struct Y {
|
||
|
int m;
|
||
|
double f;
|
||
|
} y2;
|
||
|
enum E { e2 };
|
||
|
|
||
|
template<typename T>
|
||
|
struct F {
|
||
|
int n;
|
||
|
friend bool operator==(const F &a, const F &b) { return a.n == b.n; }
|
||
|
};
|
||
|
|
||
|
int g() {
|
||
|
return y2.m + e2 + y2.f + (F<int>{0} == F<int>{1});
|
||
|
}
|