mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
9 lines
118 B
Java
Vendored
9 lines
118 B
Java
Vendored
package test;
|
|
|
|
import java.io.Closeable;
|
|
|
|
public class Super {
|
|
void foo(Runnable r);
|
|
void foo(Closeable r);
|
|
}
|