mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 00:21:47 +00:00
13 lines
111 B
Kotlin
Vendored
13 lines
111 B
Kotlin
Vendored
package usage
|
|
|
|
import lib.*
|
|
|
|
fun fail(foo: Foo) {
|
|
bar()
|
|
}
|
|
|
|
@ExperimentalAPI
|
|
fun ok(foo: Foo) {
|
|
bar()
|
|
}
|