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