shithub: MicroHs

Download patch

ref: 61dfbc696e4edf0f2bdb3a68d403db5933a37e57
parent: e8d39154af88f3c63166e7686d2fb91e42386e0a
author: Lennart Augustsson <lennart.augustsson@epicgames.com>
date: Sun Jul 21 19:03:21 EDT 2024

Fix test

--- a/MicroHs.cabal
+++ b/MicroHs.cabal
@@ -34,6 +34,7 @@
 
 data-files:
       lib/**/*.hs
+      lib/**/*.hs-boot
 
 source-repository head
     type:     git
--- a/tests/errmsg.test
+++ b/tests/errmsg.test
@@ -147,7 +147,7 @@
 class C a where { m :: a }
 instance C Int where { x = 1 }
 -----
-mhs: "../tmp/E.hs": line 5, col 24: superflous binding x
+mhs: "../tmp/E.hs": line 5, col 24: superflous instance binding
 
 =====
 END
--