5b668cb6a6
#KT-9970 Fixed
8 lines
106 B
Kotlin
Vendored
8 lines
106 B
Kotlin
Vendored
class Z<T> {
|
|
fun f(): Z<T> = ext<caret>
|
|
}
|
|
|
|
private fun <T> Z<T>.extFun() = Z<T>()
|
|
|
|
// EXIST: "extFun"
|