Change Show FC format to match vscode's expectation

This commit is contained in:
2025-10-11 16:36:23 -07:00
parent c39d1354c8
commit ddc73fb41a
6 changed files with 11 additions and 11 deletions

View File

@@ -1,10 +1,10 @@
*** Process tests/BadAlt.newt
module Prelude
module BadAlt
ERROR at tests/BadAlt.newt:(6, 9): Prelude._:<_ not a constructor for (Prelude.List Prim.Int)
ERROR at tests/BadAlt.newt:6:6--6:13: Prelude._:<_ not a constructor for (Prelude.List Prim.Int)
foo : List Int → Int
foo (xs :< x) = x
^
^^^^^^^
Compile failed

View File

@@ -1,9 +1,9 @@
*** Process tests/LitConCase.newt
module LitConCase
ERROR at tests/LitConCase.newt:(7, 5): expected Prim.Int
ERROR at tests/LitConCase.newt:7:5--7:11: expected Prim.Int
foo : Int → Unit
foo 0 = MkUnit
foo MkUnit = MkUnit
^
^^^^^^
Compile failed