mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 15:54:03 +00:00
23 lines
596 B
Plaintext
Vendored
23 lines
596 B
Plaintext
Vendored
package test
|
|
|
|
public final class KotlinClass {
|
|
public constructor KotlinClass()
|
|
|
|
public companion object Companion {
|
|
private constructor Companion()
|
|
public const final val FOO: kotlin.Int
|
|
}
|
|
}
|
|
|
|
public open class kt3698 {
|
|
public constructor kt3698()
|
|
|
|
public/*package*/ final annotation class Foo : kotlin.Annotation {
|
|
public/*package*/ constructor Foo(/*0*/ kotlin.Int)
|
|
public final val value: kotlin.Int
|
|
}
|
|
|
|
// Static members
|
|
@test.kt3698.Foo(value = 10) public open fun main(/*0*/ kotlin.Array<(out) kotlin.String!>!): kotlin.Unit
|
|
}
|