move inner to interface: strip static modifier

This commit is contained in:
anna
2010-02-11 17:56:26 +03:00
parent ed0f05188a
commit 24c6e0bfa5
8 changed files with 36 additions and 2 deletions
@@ -0,0 +1,9 @@
public interface B {
Inner i = new Inner();
class Inner {
public boolean equals(Object o) {
return o instanceof Inner;
}
}
}