5652fa762f
#KT-20362 Fixed
7 lines
147 B
Kotlin
Vendored
7 lines
147 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.
|
|
}
|
|
} |