mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 00:21:47 +00:00
17 lines
467 B
Plaintext
Vendored
17 lines
467 B
Plaintext
Vendored
package test
|
|
|
|
public/*package*/ open class Bar : test.Foo {
|
|
public/*package*/ constructor Bar()
|
|
public open fun request(): kotlin.reflect.KFunction<test.Request!>
|
|
}
|
|
|
|
public open class Foo {
|
|
public constructor Foo()
|
|
public open fun request(): kotlin.reflect.KFunction1<@kotlin.ParameterName(name = "id") kotlin.Long, test.Request>
|
|
}
|
|
|
|
public final class Request {
|
|
public constructor Request(/*0*/ kotlin.Long)
|
|
public final val id: kotlin.Long
|
|
}
|