Idris2 icon indicating copy to clipboard operation
Idris2 copied to clipboard

A purely functional programming language with first class types

Results 306 Idris2 issues
Sort by recently updated
recently updated
newest added

# Description (This pull request is a continuation of pull request #3257, since github doesn't allow me to re-open it) close #2995 This pull request consists of two part: -...

``` $ idris2 --version Idris 2, version 0.7.0 ``` code: ``` import Data.Vect import Decidable.Equality import Decidable.Decidable count : Nat -> Vect n Nat -> Nat count t [] =...

# Steps to Reproduce ```idris %default total interface S where pop : {_ : Unit} -> Unit S where pop = ?fooo ``` The signature may have an `auto`-implicit parameter...

status: confirmed bug
implem: interface elaboration

# Steps to Reproduce Set `CHEZ` environment variable to something that does not start with a slash (`/`) and compile an application. # Expected Behavior Either successsfull compilation or nice...

**Issue by [vfrinken](https://github.com/vfrinken)** _Tuesday Mar 24, 2020 at 04:39 GMT_ _Originally opened as https://github.com/edwinb/Idris2-boot/issues/238_ ---- If I have 2 structs in C ```C typedef struct{ int * a; int b;...

In the following freehand code I'm concerned that Idris can garbage collect the `Foo` pointer while it's still in use. I have had mixed experience with using this pattern. Sometimes...

A full explanation of and a minimal case for reproducing the problem can be found here: https://github.com/Lichborne/IdrisLinearityIssue/blob/main/ErrorExamples.idr Depends only on Data.Linear.LVect and Data.Linear.Notation # Steps to Reproduce Firstly, we create...

status: confirmed bug
language: quantity
language: named application

This came up as part of a thing I'm currently working on. Due to `Prelude.elem` being implemented for all `Foldable`s, it is significantly slower at compile-time compared to the "trivial"...

performance
library: prelude

Trying install idris2 with racket on Fedora with racket 7.9 (tested on FC38 and FC39, on several desktops, `racket-7.9-1.fc38.x86_64`, `racket-7.9-1.fc39.x86_64`) Compilation `raco exe idris2_app/idris2-boot.rkt` from `make bootstrap-racket` hangs with 100%...

Installation Issue

# Steps to Reproduce Typecheck the following code ```idris import Data.DPair f : Exists List -> Unit f = \(Evidence _ _) => () ``` in an editor with semantic...