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.

Other.java 148B

123456789
  1. package samenames;
  2. public class Other {
  3. static int returns1() { return true ? 1 : 2; }
  4. int returns2() { return true ? 2 : 1; }
  5. }