class Main { int f(Object o) { return switch(o) { case Integer i, null } } int g(Object o) { return switch(o) { case null, Integer i } } int h(Object o) { return switch(o) { case null } } }