class A { Int x; } class B { Int x; Int equal(B that) { return this.x == that.x } } { printInt(new B(1).equal(new A(2))); printChar(10); }