Files
kotlin-fork/idea/testData/intentions/movePropertyToConstructor/methodReference.kt
T
Vyacheslav Gerasimov 6b9242075a Fix MovePropertyToConstructorIntention applicability and type rendering
#KT-17238 Fixed

(cherry picked from commit 7f9d88a)
2017-04-07 14:32:06 +03:00

9 lines
108 B
Kotlin
Vendored

// IS_APPLICABLE: false
class MySuperClass() {
val <caret>prop5 = this::test
fun test() {
}
}