changed a lot of stuff

This commit is contained in:
nora 2021-08-21 21:20:40 +02:00
parent 860346a910
commit 40f1cbfab6
8 changed files with 402 additions and 266 deletions

BIN
testdata/Test2.class vendored

Binary file not shown.

6
testdata/Test2.java vendored
View file

@ -1,11 +1,13 @@
class Test2 {
int myField;
public static void main(String[] args) {
int i = 0;
i++;
print(i);
new Test2().print(i);
}
static void print(int i) {
void print(int i) {
System.out.println(i);
}
}