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