xxxxxxxxxx
import std;
void main() {
struct A {
int a;
int opCmp(A s) {
return a - s.a;
}
enum B : A {
a = A(1),
b = A(2)
writeln(B.a >= B.b);