mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
fix tests in org.jetbrains.kotlin.checkers
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
internal interface TheTrait {
|
||||
public interface TheTrait {
|
||||
|
||||
public companion object Companion {
|
||||
/*primary*/ private constructor Companion()
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
package test
|
||||
|
||||
internal final class Some {
|
||||
public final class Some {
|
||||
/*primary*/ public constructor Some()
|
||||
|
||||
test.Some.Companion.TestAnnotation() public companion object Companion {
|
||||
/*primary*/ private constructor Companion()
|
||||
|
||||
kotlin.annotation.annotation() internal final class TestAnnotation : kotlin.Annotation {
|
||||
kotlin.annotation.annotation() public final class TestAnnotation : kotlin.Annotation {
|
||||
/*primary*/ public constructor TestAnnotation()
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
internal final enum class Test : kotlin.Enum<test.Test> {
|
||||
public final enum class Test : kotlin.Enum<test.Test> {
|
||||
enum entry A
|
||||
|
||||
enum entry B
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
package test
|
||||
|
||||
internal fun </*0*/ T> foo(/*0*/ t: T): T
|
||||
public fun </*0*/ T> foo(/*0*/ t: T): T
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
package test
|
||||
|
||||
internal final class A {
|
||||
public final class A {
|
||||
/*primary*/ public constructor A()
|
||||
|
||||
internal object B {
|
||||
public object B {
|
||||
/*primary*/ private constructor B()
|
||||
internal final fun foo(/*0*/ a: kotlin.Int): kotlin.String
|
||||
public final fun foo(/*0*/ a: kotlin.Int): kotlin.String
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
internal object SomeObject {
|
||||
public object SomeObject {
|
||||
/*primary*/ private constructor SomeObject()
|
||||
internal final fun test(/*0*/ a: kotlin.Int): kotlin.Int
|
||||
public final fun test(/*0*/ a: kotlin.Int): kotlin.Int
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
package test
|
||||
|
||||
internal object Bar {
|
||||
public object Bar {
|
||||
/*primary*/ private constructor Bar()
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user