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