[Test] Replace public fun box() with fun box() in all box tests
This commit is contained in:
committed by
teamcityserver
parent
c168a561df
commit
b9c549803d
+1
-1
@@ -23,7 +23,7 @@ fun test(a : A) {
|
||||
}
|
||||
}
|
||||
|
||||
public fun box() : String {
|
||||
fun box() : String {
|
||||
AImpl().test
|
||||
test(AImpl())
|
||||
return "OK"
|
||||
|
||||
@@ -6,7 +6,7 @@ class AImpl : A {
|
||||
override val v: Int = 5
|
||||
}
|
||||
|
||||
public fun box() : String {
|
||||
fun box() : String {
|
||||
val a: A = AImpl()
|
||||
a.v
|
||||
return "OK"
|
||||
|
||||
Reference in New Issue
Block a user