15 lines
249 B
Kotlin
Vendored
15 lines
249 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
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?
|
|
}
|