Fix stack overflow caused star projection

This commit is contained in:
Denis Zharkov
2016-01-26 19:22:19 +03:00
parent 6b33e3fb67
commit 5b0fdcb3fe
4 changed files with 28 additions and 0 deletions
@@ -0,0 +1,3 @@
class A<T : A<T>>
fun <T : A<*>> foo() {}
class B<T : A<*>>