Idris2/tests/idris2/real001/expected
Mathew Polzin 7b19099763
print location of implicit name shadowing with the warning. (#1968)
* print location of implicit name shadowing with the warning.

* move location output to bottom of warning.
2021-10-03 10:15:01 +01:00

16 lines
497 B
Plaintext

1/3: Building Linear (Linear.idr)
2/3: Building Channel (Channel.idr)
Warning: We are about to implicitly bind the following lowercase names.
You may be unintentionally shadowing the associated global definitions:
any is shadowing Prelude.Interfaces.any
Channel:63:6--63:11
59 | AsServer proto = ServerK proto (\res => Close)
60 |
61 | public export
62 | data QueueEntry : Type where
63 | Entry : (1 val : any) -> QueueEntry
^^^^^
3/3: Building TestProto (TestProto.idr)