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.

NestHost.java 200B

1234567891011
  1. package test5;
  2. public class NestHost {
  3. private int value;
  4. public class Foo {
  5. int foo() { return value++; }
  6. }
  7. public class Bar {
  8. int bar() { return value++; }
  9. }
  10. }