Fix generic signature for KFunctionN types on JVM

#KT-15473 Fixed
This commit is contained in:
Alexander Udalov
2016-12-29 19:15:47 +03:00
parent bf3b5281a9
commit 0dbb02ec6a
12 changed files with 152 additions and 58 deletions

View File

@@ -0,0 +1,10 @@
package test;
import kotlin.reflect.KFunction;
class Bar extends Foo {
@Override
public KFunction<Request> request() {
return null;
}
}