jvm/p/DataTest.java
Zack Buhman 932a7c82aa add class_resolver
Implement the getfield and invokestatic opcodes.
2024-12-23 23:25:45 -06:00

14 lines
175 B
Java

package p;
import p.Data;
class DataTest {
static int test() {
return test2(6, 3) * 5;
}
static int test2(int a, int b) {
return a - b;
}
}