mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
12 lines
193 B
Java
Vendored
12 lines
193 B
Java
Vendored
package test;
|
|
|
|
public class equalsHashCodeToString {
|
|
public final boolean b;
|
|
public char c;
|
|
|
|
public equalsHashCodeToString() {
|
|
this.b = false;
|
|
this.c = '0';
|
|
}
|
|
}
|