blog-static/code/compiler/13/examples/errors/pattern_unknown_constructor...

7 lines
88 B
Plaintext

defn main = {
case True of {
NotBool -> { 1 }
True -> { 2 }
}
}