mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-16 07:34: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.
22 lines
642 B
Plaintext
22 lines
642 B
Plaintext
1/1: Building Issue735 (Issue735.idr)
|
|
Error: While processing left hand side of isCons. Can't match on :: (Under-applied constructor).
|
|
|
|
Issue735:5:8--5:12
|
|
1 | module Issue735
|
|
2 |
|
|
3 | -- Not allowed to pattern-match on under-applied constructors
|
|
4 | isCons : (a -> List a -> List a) -> Bool
|
|
5 | isCons (::) = True
|
|
^^^^
|
|
|
|
Error: While processing left hand side of test. Can't match on A (Under-applied constructor).
|
|
|
|
Issue735:12:6--12:7
|
|
08 | interface A a where
|
|
09 |
|
|
10 | -- Not allowed to pattern-match on under-applied type constructors
|
|
11 | test : (kind : Type -> Type) -> Maybe Nat
|
|
12 | test A = Just 1
|
|
^
|
|
|