Don't use ForceResolveUtil.forceResolveAllContents in TypeResolver in order to avoid problems with cyclic hierarchy.

This commit is contained in:
Stanislav Erokhin
2015-10-01 17:15:28 +03:00
parent e24af934dc
commit ace99f6c3f
4 changed files with 64 additions and 2 deletions
@@ -0,0 +1,5 @@
open class X<T>
class A: X<A.B>() {
class B
}