mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 00:21:29 +00:00
Fix generic signature for KFunctionN types on JVM
#KT-15473 Fixed
This commit is contained in:
10
compiler/testData/compileJavaAgainstKotlin/callableReference/GenericSignature.java
vendored
Normal file
10
compiler/testData/compileJavaAgainstKotlin/callableReference/GenericSignature.java
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
package test;
|
||||
|
||||
import kotlin.reflect.KFunction;
|
||||
|
||||
class Bar extends Foo {
|
||||
@Override
|
||||
public KFunction<Request> request() {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user