2841931ffa
#KT-10828 Fixed
14 lines
198 B
Kotlin
Vendored
14 lines
198 B
Kotlin
Vendored
package demo
|
|
|
|
internal class TestT {
|
|
fun <T> getT() {}
|
|
}
|
|
|
|
internal class U {
|
|
fun main() {
|
|
val t = TestT()
|
|
t.getT<String>()
|
|
t.getT<Int>()
|
|
t.getT<Any>()
|
|
}
|
|
} |