blob: 180012e86039b70e396d08931dc0ab4d471228f0 [file]
enum class MyEnum {
X, Y
}
fun foo(m: MyEnum) {}
fun main() {
foo(X)
}