blob: 89a258518f0b11c9c882bc74f6b48631059f8fd1 [file] [log] [blame]
final class Test
{
public static class Foo
{
void fun()
{
}
}
public Foo get()
{
return new Foo()
{
@Override
void fun()
{
super.fun();
}
};
}
}