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