Files
kotlin-fork/j2k/testData/fileOrElement/issues/unfinishedReferenceExpression.kt
T
Simon Ogorodnik e7635652bc Fix for KT-14205
If detected unfinished expression it passed through, added warning on action "Convert Java to Kotlin", if Java files contains syntax errors.
2016-10-12 19:01:58 +03:00

8 lines
164 B
Kotlin
Vendored

// ERROR: The expression cannot be a selector (occur after a dot)
class JavaClass {
var v = ""
fun m(s: String) {
s.
this.v.
}
}