mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-24 20:23:11 +03:00
8 lines
128 B
Idris
8 lines
128 B
Idris
import Data.Vect
|
|
|
|
-- m was not in scope when n is implicit
|
|
parameters {n : Nat}
|
|
foo : Vect m Nat -> Nat
|
|
foo xs = ?hole
|
|
|