Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
06ab8cc69e303e70578de24dd9a1cf4ebafff93a
/
.
/
compiler
/
testData
/
codegen
/
script
/
scriptInstanceCapturing
/
companionCapturesProperty.kts
blob: 2e366953729e02f17818aa80aa15af5c015fc1e7 [
file
]
// IGNORE_BACKEND: JS_IR, JS_IR_ES6, NATIVE, WASM
// IGNORE_BACKEND: JVM_IR
// expected: rv: <nofield>
// KT-30616
val foo
=
"hello"
class
Bar
(
val s
:
String
)
{
companion
object
{
fun t
()
{
Bar
(
foo
)
}
}
}