1071919706
Also remove any mentions of NewInference, and rename some tests.
12 lines
170 B
Kotlin
Vendored
12 lines
170 B
Kotlin
Vendored
fun interface MyRunnable {
|
|
fun run()
|
|
}
|
|
|
|
fun test(a: Any, r: MyRunnable) {
|
|
if (a is MyRunnable) {
|
|
foo({}, r, a)
|
|
}
|
|
}
|
|
|
|
fun foo(vararg rs: MyRunnable) {}
|