mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 08:31:28 +00:00
16 lines
423 B
Plaintext
Vendored
16 lines
423 B
Plaintext
Vendored
package test
|
|
|
|
public final annotation class A : kotlin.Annotation {
|
|
/*primary*/ public constructor A()
|
|
}
|
|
|
|
public final annotation class B : kotlin.Annotation {
|
|
/*primary*/ public constructor B()
|
|
}
|
|
|
|
public final class Class {
|
|
/*primary*/ public constructor Class(/*0*/ @test.A() x: kotlin.Int, /*1*/ @test.B() y: kotlin.String)
|
|
public final val x: kotlin.Int
|
|
public final fun <get-x>(): kotlin.Int
|
|
}
|