Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
49b2ac1b100c5042a0e98582713938062efa6a31
/
.
/
compiler
/
testData
/
codegen
/
script
/
scriptInstanceCapturing
/
classCapturesFunction.kts
blob: c84d218bf1e615b73dd39124fa014213bccc8d50 [
file
]
// IGNORE_BACKEND: JS, JS_IR, JS_IR_ES6, NATIVE, WASM
// expected: rv: 42
val x
=
6
val y
=
7
fun foo
()
=
x
class
A
{
fun bar
()
=
foo
()
*
y
}
val rv
=
A
().
bar
()