NichtHaskell2.0/src/test/resources/semantic/endToTAST/CorrectTest.java
Bruder John 5bf9a4fc73
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run
added wrong type in if clause
2024-06-21 18:06:49 +02:00

18 lines
215 B
Java

public class Example {
public int a;
public static int testMethod(int b, boolean bo){
a = b;
if(bo){
}
return a;
}
public static void testMethod(int b){
}
}