683a8895df
#KT-7227 Fixed
11 lines
140 B
Kotlin
Vendored
11 lines
140 B
Kotlin
Vendored
class A {
|
|
fun test() = 1
|
|
}
|
|
|
|
fun main(args: Array<String>) {
|
|
val a = A()
|
|
<selection>a.test()</selection>
|
|
|
|
val b = a.test()
|
|
}
|