mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-20 18:21:47 +03:00
13 lines
174 B
Idris
13 lines
174 B
Idris
import Data.List
|
|
|
|
interface Foo a where
|
|
covering
|
|
foo : a -> ()
|
|
|
|
Foo (Maybe String) where
|
|
foo Nothing = ()
|
|
foo (Just x) = ()
|
|
|
|
Foo (Maybe Int) where
|
|
foo Nothing = ()
|