1 2 3 4 5 6 7 8 9
package samenames; public class Other { static int returns1() { return true ? 1 : 2; } int returns2() { return true ? 2 : 1; } }