mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 15:53:40 +00:00
- Remove whole file resolve - Take already resolved element - Get kotlin element behind the wrapper directly - Remove outdated isKotlinDeclaration method - More tests
9 lines
195 B
Java
9 lines
195 B
Java
class Test {
|
|
/**
|
|
* Java Method
|
|
*/
|
|
@KotlinSignature("fun foo(param: String): Array<out Any>")
|
|
public static Object[] foo(String param) {
|
|
return new Object[0];
|
|
}
|
|
} |