1
我可以在Haskell衝突進口
運行這段代碼module Foo where
test = 1
module Bar where
test = 2
module Main where
import Foo
import Bar
main = print "test"
但PureScript編譯器返回一個錯誤
相互矛盾模塊的酒吧和Foo
測試進口這是一個錯誤?
我可以在Haskell衝突進口
運行這段代碼module Foo where
test = 1
module Bar where
test = 2
module Main where
import Foo
import Bar
main = print "test"
但PureScript編譯器返回一個錯誤
相互矛盾模塊的酒吧和Foo
測試進口這是一個錯誤?
這不是一個錯誤,但它會改變。
我認爲這是由設計,但如果您發佈此編譯器問題清單上,你可能會得到更詳細的迴應。 –