我生成了一些名为Par.hs
的haskell 模块Bnfc/Par.hs
生成的模块是
module Bnfc.Abs where
在我的图书馆引用这是
module Lib
( someFunc
) where
import Bnfc.Abs
import Text.Printf
我package.yaml
的 withstack
是这样配置的
library:
source-dirs:
- src
- Bnfc
File name does not match module name:
Saw: ‘Bnfc.Par’
Expected: ‘Par’
|
9 | module Bnfc.Par
但是我在运行时遇到上述错误stack ghci
。我不明白我做错了什么?