7 lines
87 B
Haskell
7 lines
87 B
Haskell
|
module HasErrors where
|
||
|
|
||
|
import Error
|
||
|
|
||
|
class HasErrors h where
|
||
|
errors :: h -> [Error]
|