Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
codegen
/
box
/
properties
/
kt1165.kt
blob: 0a32a58b9e2a9a9d2c0bccc5d4e85fb8c27b917e [
file
]
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"
}