Changed testfiles
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run

This commit is contained in:
i22007 2024-07-04 21:59:37 -04:00
parent f5bccab651
commit 5a12d61623
2 changed files with 2 additions and 2 deletions

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() {