进口冲突

时间:2015-09-27 09:19:28

标签: purescript

我可以在Haskell中运行此代码

module Foo where
test = 1

module Bar where
test = 2

module Main where
import Foo
import Bar
main = print "test"

但PureScript编译器返回错误

  

来自模块Bar and Foo的测试导入冲突

这是一个错误吗?

1 个答案:

答案 0 :(得分:0)

这不是错误,但会改变。

https://github.com/purescript/purescript/issues/1497