mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 00:21:29 +00:00
fix tests in org.jetbrains.kotlin.checkers
This commit is contained in:
@@ -1,25 +1,25 @@
|
||||
package test
|
||||
|
||||
internal final class A {
|
||||
public final class A {
|
||||
/*primary*/ public constructor A()
|
||||
|
||||
public companion object Companion {
|
||||
/*primary*/ private constructor Companion()
|
||||
|
||||
kotlin.annotation.annotation() internal final class Anno1 : kotlin.Annotation {
|
||||
kotlin.annotation.annotation() public final class Anno1 : kotlin.Annotation {
|
||||
/*primary*/ public constructor Anno1()
|
||||
}
|
||||
|
||||
internal final class B {
|
||||
public final class B {
|
||||
/*primary*/ public constructor B()
|
||||
|
||||
kotlin.annotation.annotation() internal final class Anno2 : kotlin.Annotation {
|
||||
kotlin.annotation.annotation() public final class Anno2 : kotlin.Annotation {
|
||||
/*primary*/ public constructor Anno2()
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
test.A.Companion.Anno1() test.A.Companion.B.Anno2() internal final class C {
|
||||
test.A.Companion.Anno1() test.A.Companion.B.Anno2() public final class C {
|
||||
/*primary*/ public constructor C()
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user