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

8 lines
85 B
Plaintext
Raw Normal View History

2020-09-10 14:02:19 -07:00
defn add x y = { x + y }
defn main = {
case add of {
n -> { 1 }
}
}