Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
idea
/
idea-frontend-fir
/
idea-fir-low-level-api
/
testdata
/
diagnosticTraversalCounter
/
declarationsInPropertyInit.kt
blob: da2bb45093c8d606ba586ff29a4b6e43b72079d9 [
file
] [
log
] [
blame
]
class
A
{
val a
=
run
{
class
X
()
val y
=
10
}
}
inline
fun
<
R
>
run
(
block
:
()
->
R
):
R
{
return
block
()
}