Skip to content

Commit b7910d3

Browse files
committed
Fix #7424: add test
1 parent ee60cc0 commit b7910d3

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

tests/run/i7424/Enum_1.scala

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
enum A {
2+
case A1
3+
}

tests/run/i7424/Test_2.scala

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
object Test {
2+
def main(args: Array[String]): Unit = {
3+
println(A.values)
4+
}
5+
}

0 commit comments

Comments
 (0)