1 2 3 4 5 6 7 8 9
public class ErrorTest { static String i() { return "0"; } int i = i(); // CE 5 always int j = i(); // CE 6 always }