blob: 53706b9c5d3f6f2246edf35614c922f66c696c06 [file] [log] [blame]
package p;
class A {
void f(){
new Comparable(){
public int compareTo(Object other) {
return 0;
}
};
}
}