Files

14 lines
113 B
Kotlin
Vendored

package hello
fun foo(p: Int??) {
}
interface T {
abstract fun foo()
}
fun main() {
println("Hi!")
}