blob: 8f5bb73e67850b24260b8190c1c3c180fccbb235 [file] [log] [blame]
abstract class A {
abstract <T> T foo();
{
int x = foo();
}
}