mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-17 08:11:45 +03:00
7aee7c9b7c
Why: * To implement robust cross-project go-to-definition in LSP i.e you can jump to definition of any global name coming from library dependencies, as well as from the local project files. What it does: * Modify `FC`s to carry `ModuleIdent` for .idr sources, file name for .ipkg sources or nothing for interactive runs. * Add `--install-with-src` to install the source code alongside the ttc binaries. The source is installed into the same directory as the corresponding ttc file. Installed sources are made read-only. * As we install the sources pinned to the related ttc files we gain the versioning of sources for free.
83 lines
1.8 KiB
Plaintext
83 lines
1.8 KiB
Plaintext
1/1: Building Issue1022 (Issue1022.idr)
|
|
Error: test8 eq is not a valid impossible case.
|
|
|
|
Issue1022:25:1--25:20
|
|
21 |
|
|
22 | -- The following ones are actually possible
|
|
23 |
|
|
24 | test8 : Not (a = Type)
|
|
25 | test8 eq impossible
|
|
^^^^^^^^^^^^^^^^^^^
|
|
|
|
Error: test9 eq is not a valid impossible case.
|
|
|
|
Issue1022:28:1--28:20
|
|
24 | test8 : Not (a = Type)
|
|
25 | test8 eq impossible
|
|
26 |
|
|
27 | test9 : Not (a = 'a')
|
|
28 | test9 eq impossible
|
|
^^^^^^^^^^^^^^^^^^^
|
|
|
|
Error: test10 eq is not a valid impossible case.
|
|
|
|
Issue1022:31:1--31:21
|
|
27 | test9 : Not (a = 'a')
|
|
28 | test9 eq impossible
|
|
29 |
|
|
30 | test10 : Not (a = Nat)
|
|
31 | test10 eq impossible
|
|
^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Error: test11 eq is not a valid impossible case.
|
|
|
|
Issue1022:34:1--34:21
|
|
30 | test10 : Not (a = Nat)
|
|
31 | test10 eq impossible
|
|
32 |
|
|
33 | test11 : Not (3 = a)
|
|
34 | test11 eq impossible
|
|
^^^^^^^^^^^^^^^^^^^^
|
|
|
|
1/1: Building Issue1022-Refl (Issue1022-Refl.idr)
|
|
Error: test8 Refl is not a valid impossible case.
|
|
|
|
Issue1022-Refl:25:1--25:22
|
|
21 |
|
|
22 | -- The following ones are actually possible
|
|
23 |
|
|
24 | test8 : Not (a = Type)
|
|
25 | test8 Refl impossible
|
|
^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Error: test9 Refl is not a valid impossible case.
|
|
|
|
Issue1022-Refl:28:1--28:22
|
|
24 | test8 : Not (a = Type)
|
|
25 | test8 Refl impossible
|
|
26 |
|
|
27 | test9 : Not (a = 'a')
|
|
28 | test9 Refl impossible
|
|
^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Error: test10 Refl is not a valid impossible case.
|
|
|
|
Issue1022-Refl:31:1--31:23
|
|
27 | test9 : Not (a = 'a')
|
|
28 | test9 Refl impossible
|
|
29 |
|
|
30 | test10 : Not (a = Nat)
|
|
31 | test10 Refl impossible
|
|
^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Error: test11 Refl is not a valid impossible case.
|
|
|
|
Issue1022-Refl:34:1--34:23
|
|
30 | test10 : Not (a = Nat)
|
|
31 | test10 Refl impossible
|
|
32 |
|
|
33 | test11 : Not (3 = a)
|
|
34 | test11 Refl impossible
|
|
^^^^^^^^^^^^^^^^^^^^^^
|
|
|