Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
idea
/
testData
/
intentions
/
usePropertyAccessSyntax
/
accessThroughKotlinClassInstance.kt
blob: 18d4bff3b102669aea758bf551540153c4c9d0d8 [
file
] [
log
] [
blame
]
// WITH_RUNTIME
import
java
.
io
.
File
class
MyFile
:
File
(
"file"
)
fun foo
(
file
:
MyFile
)
{
file
.
getAbsolutePath
()<
caret
>
}