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

8 lines
85 B
Plaintext

defn add x y = { x + y }
defn main = {
case add of {
n -> { 1 }
}
}