blog-static/code/compiler/13/examples/errors/double_catchall.txt

7 lines
79 B
Plaintext
Raw Normal View History

2020-09-10 14:02:19 -07:00
defn main = {
case True of {
n -> { 2 }
n -> { 1 }
}
}