Fix unbound class literals for inline classes

#KT-28361 Fixed
This commit is contained in:
Mikhail Zarechenskiy
2018-12-13 16:53:19 +03:00
parent 8f821c9ef5
commit c924a6efe8
6 changed files with 27 additions and 11 deletions
@@ -63,5 +63,11 @@ fun box(): String {
val arrU = arrayOf(1u)
check(arrU[0]::class, "class kotlin.UInt")
check(IcInt::class, "class root.IcInt")
check(IcLong::class, "class root.IcLong")
check(IcAny::class, "class root.IcAny")
check(IcOverIc::class, "class root.IcOverIc")
check(UInt::class, "class kotlin.UInt")
return "OK"
}