mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 00:21:28 +00:00
10 lines
140 B
Plaintext
Vendored
10 lines
140 B
Plaintext
Vendored
// "Create enum constant 'A'" "true"
|
|
// ERROR: No value passed for parameter n
|
|
package p
|
|
|
|
fun foo() = X.A
|
|
|
|
enum class X(n: Int) {
|
|
A()
|
|
|
|
} |