Files
kotlin-fork/idea/testData/refactoring/inline/inlineVariableOrProperty/property/InstanceProperty.kt.after
T
Mikhail Glukhikh 4ef0096d46 Refactoring: inline val / fun now use the common inliner
This prevents their inconsistent work in some situations
NB: breaks three tests if used alone
2017-04-19 18:27:26 +03:00

11 lines
99 B
Plaintext
Vendored

class Class {
fun f() {
println(239)
}
}
fun f() {
Class()
println(239)
}