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