9 lines
156 B
Kotlin
Vendored
9 lines
156 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
// IS_APPLICABLE: false
|
|
class T<U> {
|
|
fun <U> T<U>.iterator(): Iterator<U> = listOf<U>().iterator()
|
|
}
|
|
|
|
fun test() {
|
|
T<Int>()<caret>
|
|
} |