blob: f73a57a7c2dfcefa562dfacfcfb99f12776aa8ff [file] [log] [blame]
class UUU {
int myValue;
UUU() {
System.out.println(newMethod());
}
private int newMethod() {
return myValue;
}
void init() {
myValue = 0;
}
}