Files
kotlin-fork/compiler/testData/diagnostics/tests/smartCasts/combineWithNoSelectorInfo.fir.kt
T

14 lines
232 B
Kotlin
Vendored

package foo
fun dispatch(request: Request) {
val url = request.getRequestURI() as String
if (request.getMethod()?.length != 0) {
}
}
interface Request {
fun getRequestURI(): String?
fun getMethod(): String?
}