Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
67ac90ce0868ee0c9cd08d72460f16efecded549
/
.
/
compiler
/
testData
/
diagnostics
/
testsWithConverter
/
scripts
/
objectCapturesPropertyIndirect.kts
blob: 12e134d87d9835ba047a9aca0c20e24e85ccd86e [
file
]
// RENDER_ALL_DIAGNOSTICS_FULL_TEXT
fun foo
()
=
B
.
bar
()
val life
=
42
class
A
{
val x
=
life
}
<!
SCRIPT_CAPTURING_OBJECT
!>
object
B
<!>
{
fun bar
()
=
A
().
x
}