13 lines
190 B
Kotlin
Vendored
13 lines
190 B
Kotlin
Vendored
class C(val s: String?) {
|
|
fun foo(p: Boolean) {
|
|
if (p) {
|
|
print(s!!)
|
|
}
|
|
else {
|
|
print(this.s!!)
|
|
}
|
|
|
|
<caret>s.length()
|
|
}
|
|
}
|