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