blob: 53b914c2ff470839adf28ec8cc79f7ce6034b746 [file] [log] [blame]
class A {
private Integer i = getByte();
static byte getByte() { return 0; }
void foo() {
i = 10;
}
}