Files
kotlin/compiler/testData/compileJavaAgainstKotlin/staticFields/staticClassProperty.txt
Pavel V. Talanov f02f663167 Minor: fix test data
2015-06-03 14:29:44 +03:00

19 lines
465 B
Plaintext
Vendored

package test
internal final class Test {
public constructor Test()
public companion object Companion {
private constructor Companion()
public final val valProp: kotlin.Int
public final var varProp: kotlin.Int
}
}
public/*package*/ open class staticClassProperty {
public/*package*/ constructor staticClassProperty()
// Static members
public open fun main(/*0*/ kotlin.Array<(out) kotlin.String!>!): kotlin.Unit
}