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