Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
161333d3e7d13dd98386fe346a71a07eadfe4756
/
.
/
compiler
/
testData
/
codegen
/
script
/
scriptInstanceCapturing
/
enumEntryCapturesProperty.kts
blob: 774043904ae92e5401e94ab7667a6b703bd6509e [
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"
enum
class
Bar
(
val s
:
String
)
{
Eleven
(
s
=
foo
)
}