Changed testfiles
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run
This commit is contained in:
parent
f5bccab651
commit
5a12d61623
@ -3,7 +3,7 @@ public class Increment {
|
|||||||
public int test;
|
public int test;
|
||||||
|
|
||||||
public void increment(int p) {
|
public void increment(int p) {
|
||||||
test = p++;
|
this.test = p++;
|
||||||
|
|
||||||
for(int i = 1; i<=10; i++) {
|
for(int i = 1; i<=10; i++) {
|
||||||
int a = 5;
|
int a = 5;
|
||||||
|
@ -3,7 +3,7 @@ class SelfReference {
|
|||||||
SelfReference selfReference;
|
SelfReference selfReference;
|
||||||
|
|
||||||
int testMethod1() {
|
int testMethod1() {
|
||||||
return this.testMethod2();
|
return testMethod2();
|
||||||
}
|
}
|
||||||
|
|
||||||
int testMethod2() {
|
int testMethod2() {
|
||||||
|
Loading…
Reference in New Issue
Block a user