Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
refactoring
/
introduceVariable
/
NoExplicitReceivers.kt
blob: 617c593d7bdc62977dbc5eab4e48293a22c606fe [
file
] [
log
] [
blame
]
// WITH_RUNTIME
fun main
(
args
:
Array
<
String
>)
{
with
(
A
())
{
println
(<
selection
>
prop
</
selection
>)
println
(
prop
)
}
}
class
A
{
val prop
=
1
}