日志仅涉及“分散隐式扩展”

时间:2013-12-13 12:24:25

标签: scala compiler-errors implicit scalac

其他答案建议使用"-Xlog-implicits"选项来调试“分歧隐式扩展”错误。但是,它也会在与这些错误无关的地方记录大量含义。有没有办法将它限制为仅解释产生编译错误的地方?

1 个答案:

答案 0 :(得分:6)

如果有这样的选择,可能会在这里看到它的使用:

https://github.com/scala/scala/pull/3669

但选择的工具似乎是grep:

scalac -Xlog-implicits test/files/neg/t2031.scala 2>&1 | grep diverg

由于该领域正在积极开发中,现在可能是提交增强请求的时候了。