Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
idea
/
testData
/
intentions
/
usePropertyAccessSyntax
/
accessThroughKotlinClassInstanceWithOverride.kt.after
blob: 89f43a93045ef01d41d747600900d5bea501fc07 [
file
] [
log
] [
blame
]
// WITH_RUNTIME
import
java
.
io
.
File
class
MyFile
:
File
(
"file"
)
{
override
fun getCanonicalFile
():
File
{
return
super
.
getCanonicalFile
()
}
}
fun foo
(
file
:
MyFile
)
{
file
.
canonicalFile
<caret>
}