Files
kotlin/compiler/testData/loadJava/compiledKotlin/annotations/parameters/Constructor.txt
2015-10-19 20:45:01 +03:00

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
}