mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
11 lines
215 B
Java
11 lines
215 B
Java
package test;
|
|
|
|
import jet.runtime.typeinfo.KotlinSignature;
|
|
|
|
public class SyntaxError {
|
|
@KotlinSignature("fun foo(,) : Int")
|
|
public Integer foo() {
|
|
throw new UnsupportedOperationException();
|
|
}
|
|
}
|