testdata for IDEA-104100

(cherry picked from commit 411a14aa13d2b77fb37adbb2f00c7d1dcff2efdf)
This commit is contained in:
anna
2013-03-29 20:09:57 +01:00
parent 79fc1dd582
commit 141ef05254
2 changed files with 9 additions and 0 deletions
@@ -0,0 +1,7 @@
public class TestGenericMap<A extends Comparable<A>, B extends Comparable<B>>
{
public TestGenericMap<B, A> inverse()
{
return new TestGenericMap<>();
}
}