Endabgabe #20

Merged
i22035 merged 137 commits from Endabgabe into main 2024-07-05 11:59:47 +00:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 5a12d61623 - Show all commits

View File

@ -3,7 +3,7 @@ public class Increment {
public int test;
public void increment(int p) {
test = p++;
this.test = p++;
for(int i = 1; i<=10; i++) {
int a = 5;

View File

@ -3,7 +3,7 @@ class SelfReference {
SelfReference selfReference;
int testMethod1() {
return this.testMethod2();
return testMethod2();
}
int testMethod2() {