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