Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
f467c970b2a4ee4ada1a66e72db80b847652c1d1
/
.
/
compiler
/
testData
/
codegen
/
script
/
scriptInstanceCapturing
/
companionCapturesProperty.kts
blob: 0564b783dde6d0af8ceb351d5ce7ad4de361b009 [
file
] [
log
] [
blame
]
// 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
)
}
}
}