MiniJavaCompiler/Test/JavaSources/TestMethodOverload.java

11 lines
165 B
Java
Raw Normal View History

2024-06-27 16:52:18 +00:00
public class TestMethodOverload {
public int MethodOverload() {
return 42;
2024-06-27 16:52:18 +00:00
}
public int MethodOverload(int a) {
return 42 + a;
2024-06-27 16:52:18 +00:00
}
}