mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-20 18:21:47 +03:00
7 lines
95 B
Idris
7 lines
95 B
Idris
module EmptyParameters
|
|
|
|
parameters (m : Nat -> Type)
|
|
|
|
f : (y : Nat) -> m y -> Unit
|
|
f y my = ()
|