Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
intentions
/
convertPropertyToFunction
/
expressionBody.kt
blob: 22568b9f6603b861390e06890494aeeb0d4d7561 [
file
] [
log
] [
blame
]
class
A
(
val n
:
Int
)
{
val
<caret>
foo
:
Boolean
get
()
=
n
>
1
}
fun test
()
{
val t
=
A
(
1
).
foo
}