mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 08:31:28 +00:00
12 lines
274 B
Kotlin
Vendored
12 lines
274 B
Kotlin
Vendored
// "Create property 'foo' as constructor parameter" "true"
|
|
// ERROR: No value passed for parameter 'foo'
|
|
// ERROR: No value passed for parameter 'foo'
|
|
// ERROR: No value passed for parameter 'foo'
|
|
|
|
enum class E {
|
|
A,
|
|
B {
|
|
val t: Int = <caret>foo
|
|
},
|
|
C
|
|
} |