Fork of the Fernflower decompiler
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
fernflower/test/unit/classes/TestClassTypes.java

37 lines
580 B

package unit.classes;
import java.util.ArrayList;
import java.util.List;
public class TestClassTypes {
public void testBoolean() {
byte var7 = 0;
long time = System.currentTimeMillis();
if(time % 2 > 0) {
var7 = 1;
} else if(time % 3 > 0) {
var7 = 2;
}
if(var7 == 1) {
System.out.println();
}
}
public void testAssignmentType(List list) {
List a = list;
if(a != null) {
(a = new ArrayList(a)).add("23");
}
System.out.println(a.size());
}
}