mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-19 09:12:34 +03:00
00ab9573a5
* [ re #1944 ] Allow simple toplevel aliases * [ done ] toplevel aliases with arguments * [ fix ] weird nonsensical test case * [ fix ] golden test files
24 lines
456 B
Plaintext
24 lines
456 B
Plaintext
1/3: Building Nat (Nat.idr)
|
|
2/3: Building Mult (Mult.idr)
|
|
3/3: Building Test (Test.idr)
|
|
Error: While processing type of thing. Undefined name Nat.
|
|
|
|
Test:5:9--5:12
|
|
1 | module Test
|
|
2 |
|
|
3 | import Mult
|
|
4 |
|
|
5 | thing : Nat -> Nat
|
|
^^^
|
|
|
|
Error: While processing right hand side of thing. Undefined name plus.
|
|
|
|
Test:6:19--6:23
|
|
2 |
|
|
3 | import Mult
|
|
4 |
|
|
5 | thing : Nat -> Nat
|
|
6 | thing x = mult x (plus x x)
|
|
^^^^
|
|
|