Files
kotlin-fork/idea/testData/refactoring/inline/inlineVariableOrProperty/property/Library.kt
T
Mikhail Glukhikh 8fdb611e3b Do not try to inline properties from decompiled files
This removes GUI freeze for library properties #KT-17234 Fixed
2017-04-19 18:27:29 +03:00

5 lines
107 B
Kotlin
Vendored

// ERROR: Cannot inline 'length' from a decompiled file
fun foo(s: String) {
val l = s.<caret>length
}