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.

WrongPackage.java 180B

12345678910
  1. package a.b.c;
  2. public class WrongPackage {
  3. public static void main(String[] args) {
  4. Runnable r = new Runnable() {
  5. public void run() {}
  6. };
  7. r.run();
  8. }
  9. }