Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
quickfix
/
deprecatedSymbolUsage
/
propertyToSyntheticExtension.kt
blob: c25e40d3f27c5ba06652fa2e47a978aff6c4fee5 [
file
] [
log
] [
blame
]
// "Replace with 'absolutePath'" "true"
import
java
.
io
.
File
@Deprecated
(
""
,
ReplaceWith
(
"absolutePath"
))
val
File
.
prop
:
String
get
()
=
absolutePath
fun foo
(
file
:
File
)
{
val v
=
file
.
prop
<caret>
}