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.

1234567891011121314
  1. public class Java {
  2. public String lang() {
  3. throw new RuntimeException("String lang(): shouldn't have been called");
  4. }
  5. public static class lang {
  6. public static class String {
  7. public String() {
  8. throw new RuntimeException("new String(): shouldn't have been called");
  9. }
  10. }
  11. static String String() { return null; }
  12. }
  13. }