[KJS FE] Allow using typeOf with non-reified type parameters

#KT-38771 fixed
This commit is contained in:
Zalim Bashorov
2020-07-08 16:20:23 +03:00
parent 9d362875da
commit ca37c6bfe6
15 changed files with 92 additions and 109 deletions
@@ -16,7 +16,7 @@ inline fun <reified T> T.causeBug() {
T::class
Array<T>(1) { x }
// Non-reified type parameters with recursive bounds are not yet supported
// Non-reified type parameters with recursive bounds are not yet supported, see Z from class Something
// typeOf<T>()
}