Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6d4c52d408c017cbf43b69ccc89855d122b13a15
/
.
/
compiler
/
testData
/
codegen
/
script
/
scriptInstanceCapturing
/
enumEntryCapturesProperty.kts
blob: 4dd3a720dc5493112d58718ec993ae2849682daf [
file
]
// IGNORE_BACKEND: JS_IR, JS_IR_ES6, NATIVE, WASM
// IGNORE_BACKEND: JVM_IR
// expected: rv: <nofield>
// KT-30616
val foo
=
"hello"
enum
class
Bar
(
val s
:
String
)
{
Eleven
(
s
=
foo
)
}