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.

AnonymousClassTest.java 162B

12345678910111213141516
  1. public class AnonymousClassTest {
  2. public void foo() {
  3. new Runnable() {
  4. public void run() {};
  5. }.run();
  6. }
  7. class X {}
  8. static class Y {}
  9. }