blob: a8b07438913cd44cff4906f70ef33574f974e1dd [file]
fun foo(x: String?) {
if (x != null) {
x!!.length
}
}