blob: 2305392b5e35b92a28bb20a008dce7e1f50bb425 [file] [log] [blame]
package p;
public class Why {
class A { }
class B { }
void foo() {
A a= new A() {
public void inA(Why why) {}
};
B b= new B() {
public void inB(Why why) {}
};
}
}