Update end-of block symboly test

This commit is contained in:
Chris Penner 2024-02-12 10:50:41 -08:00
parent b00acbe182
commit 72727afc46
2 changed files with 6 additions and 4 deletions

View File

@ -24,7 +24,7 @@ x y =
(<|>) a b = (a, b)
symbolyEndOfBlock =
use List +:
x = 1
(+:)

View File

@ -19,8 +19,8 @@ x y =
(<|>) : Nat -> Nat -> (Nat, Nat)
(<|>) a b = (a, b)
f x y =
use List +:
symbolyEndOfBlock =
x = 1
(+:)
@ -107,7 +107,9 @@ x y =
(<|>) : Nat -> Nat -> (Nat, Nat)
a <|> b = (a, b)
f x y = (+:)
symbolyEndOfBlock =
x = 1
(+:)
-- Test for a previous regression that added extra brackets.