testdata for IDEA-57650

This commit is contained in:
anna
2012-10-23 18:07:10 +02:00
parent 64ae8e711e
commit c97457bb07
2 changed files with 8 additions and 0 deletions
@@ -0,0 +1,7 @@
abstract class A {
abstract <T> T foo();
{
int x = foo();
}
}