mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-15 22:32:19 +03:00
8 lines
227 B
Idris
8 lines
227 B
Idris
|
module A
|
||
|
|
||
|
-- Check that this doesn't go into a loop when resolving Show. because
|
||
|
-- f itself is a candidate when elaborating the top level f function!
|
||
|
public export
|
||
|
interface F (p : Type -> Type) where
|
||
|
f : Show a => p a -> a
|