Idris2/tests/idris2/reg013/UnboundImplicits.idr
Edwin Brady a972778eab Add test script
They don't all pass yet, for minor reasons. Coming shortly...
Unfortunately the startup overhead for chez is really noticeable here!
2020-05-19 18:25:18 +01:00

18 lines
266 B
Idris

||| Tests for issue #269
import Data.Vect
%unbound_implicits off
record Foo (x : Vect n Nat) where
constructor MkFoo
parameters (Foo : Vect n Nat)
bar : Nat
bar = 0
interface Foo (a : Vect n Nat) where
baz : Nat
implementation Functor (Vect n) where