我在文件file.hs
module FunctorChapter
(
FixMePls
)
where
data FixMePls a =
Fixme | Pls a
deriving (Show,Eq)
将file.hs
导入ghci时,它已成功加载但我无法使用构造函数Pls
Main File> Pls "test"
<interactive>:5:1: Not in scope: data constructor ‘Pls’
虽然我可以使用Just构造函数
Main File> Just "me"
Just "me"
我的类型缺少什么?
答案 0 :(得分:3)
您没有加载FunctorChapter
模块,但有一些不同的File
模块。