fun foo(s: String?, b: Boolean): Int { if (s == null) println("null") if (b) return s!!.length return 10 }