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