blob: cbbde8d79bb8cdf4022098c8e798fcaaaa253878 [file] [log] [blame]
// KT-15473 Invalid KFunction byte code signature for callable references
class Request(val id: Long)
open class Foo {
open fun request() = ::Request
}
// method: Foo::request
// jvm signature: ()Lkotlin/reflect/KFunction;
// generic signature: ()Lkotlin/reflect/KFunction<LRequest;>;