2024-06-21 13:23:48 +00:00
|
|
|
public class Example {
|
|
|
|
|
|
|
|
public int a;
|
|
|
|
|
2024-06-21 16:06:49 +00:00
|
|
|
public static int testMethod(int b, boolean bo){
|
2024-06-21 14:42:27 +00:00
|
|
|
a = b;
|
2024-06-21 16:06:49 +00:00
|
|
|
if(bo){
|
|
|
|
|
|
|
|
}
|
2024-06-21 15:03:49 +00:00
|
|
|
return a;
|
2024-06-21 13:23:48 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2024-06-21 16:06:49 +00:00
|
|
|
public static void testMethod(int b){
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2024-06-21 13:23:48 +00:00
|
|
|
}
|