Files
kotlin-fork/compiler/testData/codegen/box/properties/kt1165.kt
T
Alexander Udalov 41a416da60 Move blackBoxFile() testData to box/ directory
Delete all test methods (and empty test classes), since they'll be
auto-generated
2013-01-28 18:20:17 +04:00

14 lines
246 B
Kotlin

public abstract class VirtualFile() {
public abstract val size : Long
}
public class PhysicalVirtualFile : VirtualFile() {
public override val size: Long
get() = 11
}
fun box() : String {
PhysicalVirtualFile()
return "OK"
}