blob: a81262ed591cf670f1c3f97c927746e13e30c67e [file] [log] [blame]
// KT-15473 Invalid KFunction byte code signature for callable references
package test
class Request(val id: Long)
open class Foo {
open fun request() = ::Request
}