Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2b455fc1ba7dcb99fa03fdfc31c7672d6ccfc9fd
/
.
/
compiler
/
testData
/
codegen
/
script
/
scriptInstanceCapturing
/
enumCapturesProperty.kts
blob: 7c92ca6dbf7930846a0059998e33e7c0d4318107 [
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
=
foo
)
{
Eleven
(
"0"
)
}