mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-16 07:34:45 +03:00
7b19099763
* print location of implicit name shadowing with the warning. * move location output to bottom of warning.
16 lines
497 B
Plaintext
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)
|