diff options
Diffstat (limited to 'tests/features1610/makeSJPOptimization/B.java')
-rw-r--r-- | tests/features1610/makeSJPOptimization/B.java | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/tests/features1610/makeSJPOptimization/B.java b/tests/features1610/makeSJPOptimization/B.java new file mode 100644 index 000000000..9cd1655b7 --- /dev/null +++ b/tests/features1610/makeSJPOptimization/B.java @@ -0,0 +1,29 @@ +public class B{ + public static void main(String args[]) throws Throwable{ + B b = new B(); + b.method1(null); + b.method2(null,null); + b.method3(); + method4(); + + } + + + + public Object method1(String p1){ + return "Hola"; + } + + public Object method2(String p1, Integer p2) throws Exception{ + return "Hola"; + } + + private void method3(){ + return; + } + + public static void method4(){ + return; + } + +} |