blob: 8763c9c398df4b405b19f1122df637a92ff870a0 [file] [log] [blame]
internal class A {
fun foo(s: String?): Int {
return s?.length ?: -1
}
}