Idris2/tests/idris2/params001/expected

14 lines
374 B
Plaintext
Raw Normal View History

1/1: Building param (param.idr)
1/1: Building parambad (parambad.idr)
Error: While processing right hand side of U. Name Main.X.foo is private.
parambad:7:7--7:10
2021-02-11 20:24:26 +03:00
3 | foo : Bool
4 | foo = True
5 |
6 | U : Bool
2020-07-22 22:16:43 +03:00
7 | U = foo
2021-02-11 20:24:26 +03:00
^^^
2020-08-06 03:03:33 +03:00
Suggestion: add an explicit export or public export modifier. By default, all names are private in namespace blocks.