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