mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-10 15:51:01 +00:00
23 lines
565 B
Plaintext
Vendored
23 lines
565 B
Plaintext
Vendored
@java.lang.annotation.Retention
|
|
@kotlin.Metadata
|
|
public annotation class AllOpen {
|
|
// source: 'severalAllOpen.kt'
|
|
}
|
|
|
|
@java.lang.annotation.Retention
|
|
@kotlin.Metadata
|
|
public annotation class AllOpen2 {
|
|
// source: 'severalAllOpen.kt'
|
|
}
|
|
|
|
@AllOpen
|
|
@AllOpen2
|
|
@kotlin.Metadata
|
|
public class Test {
|
|
// source: 'severalAllOpen.kt'
|
|
private final @org.jetbrains.annotations.NotNull field prop: java.lang.String
|
|
public method <init>(): void
|
|
public @org.jetbrains.annotations.NotNull method getProp(): java.lang.String
|
|
public method method(): void
|
|
}
|