mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 08:31:31 +00:00
11 lines
241 B
Java
11 lines
241 B
Java
import jet.runtime.typeinfo.KotlinSignature;
|
|
|
|
class Test {
|
|
/**
|
|
* Java Method
|
|
*/
|
|
@KotlinSignature("fun foo(param: String): Array<out Any>")
|
|
public static Object[] foo(String param) {
|
|
return new Object[0];
|
|
}
|
|
} |