631f58f27f
Reference receivers are named more accurately now #KT-13341 Fixed
11 lines
183 B
Kotlin
Vendored
11 lines
183 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
|
|
class Foo {
|
|
companion object {
|
|
fun create(x: String): Foo = Foo()
|
|
}
|
|
}
|
|
|
|
fun main(args: Array<String>) {
|
|
listOf("a").map {<caret> Foo.create(it) }
|
|
} |