mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 08:31:28 +00:00
12 lines
249 B
Plaintext
Vendored
12 lines
249 B
Plaintext
Vendored
// "Create parameter 'foo'" "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(foo: Int) {
|
|
A(),
|
|
B(),
|
|
C();
|
|
|
|
val t: Int = foo
|
|
} |