Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
intentions
/
convertPropertyToFunction
/
initializer.kt.after
blob: 36b7e2cb89e502ffad27a6539e8272fbe60d3b6f [
file
] [
log
] [
blame
]
class
A
(
val n
:
Int
)
{
fun getFoo
():
Boolean
=
n
>
1
}
fun test
()
{
val t
=
A
(
1
).
getFoo
()
}