14 lines
121 B
Kotlin
Vendored
14 lines
121 B
Kotlin
Vendored
package foo
|
|
|
|
import kotlin.Any
|
|
|
|
fun foo(p: Int??) {
|
|
|
|
}
|
|
|
|
interface T {
|
|
abstract fun foo()
|
|
}
|
|
|
|
fun box(): String = "OK"
|