blob: 7ff22eb95bdde96c05e2f1f5db331da7b76fd2d5 [file] [log] [blame]
class Foo {
class Bar {
}
void foo() {
Bar obj = new Bar() {
public void bar() {
// Here is the problem.
return;
}
};
}
}