1071919706
Also remove any mentions of NewInference, and rename some tests.
12 lines
147 B
Kotlin
Vendored
12 lines
147 B
Kotlin
Vendored
fun interface IFoo {
|
|
fun foo(i: Int)
|
|
}
|
|
|
|
fun useFoo(foo: IFoo) {}
|
|
|
|
fun withVararg(vararg xs: Int) = 42
|
|
|
|
fun test() {
|
|
useFoo(::withVararg)
|
|
}
|