blob: 80668ab77ea5bd6d6e822c1199c7f3ce661b090b [file] [log] [blame]
class F{
public void foo() {
F foo= new F() {
public void bar() {
// comment
return;
}
};
}
}