mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 15:53:46 +00:00
16 lines
465 B
Plaintext
Vendored
16 lines
465 B
Plaintext
Vendored
package test
|
|
|
|
@kotlin.annotation.annotation() public final class A : kotlin.Annotation {
|
|
/*primary*/ public constructor A()
|
|
}
|
|
|
|
@kotlin.annotation.annotation() public final 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
|
|
}
|