[Test] Replace public fun box() with fun box() in all box tests
This commit is contained in:
committed by
teamcityserver
parent
c168a561df
commit
b9c549803d
@@ -2,7 +2,7 @@ open class Base
|
||||
class Derived: Base()
|
||||
operator fun Derived.inc(): Derived { return Derived() }
|
||||
|
||||
public fun box() : String {
|
||||
fun box() : String {
|
||||
var i : Base
|
||||
i = Derived()
|
||||
val j = ++i
|
||||
|
||||
Reference in New Issue
Block a user