add a couple of failing examples

This commit is contained in:
rhiannon morris 2023-09-22 13:48:11 +02:00
parent d4cfbd4045
commit 6153b4f7f8

10
examples/fail.quox Normal file
View file

@ -0,0 +1,10 @@
@[fail "but cases for"]
def missing-b : {a, b} → {a} =
λ x ⇒ case x return {a} of { 'a ⇒ 'a }
-- @[fail "duplicate tags"]
-- def repeat-enum-case : {a} → {a} =
-- λ x ⇒ case x return {a} of { 'a ⇒ 'a; 'a ⇒ 'a }
@[fail "duplicate tags"]
def repeat-enum-type : {a, a} = 'a