Files
kotlin-fork/idea/testData/refactoring/introduceVariable/UsedAndUnusedExpressions1.kt
T
2015-06-18 19:28:02 +03:00

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()
}