我一直在通过fsc Ant任务编译我的scala代码并继续收到以下警告:
warning: there were 3 feature warning(s); re-run with -feature for details
two warnings found
我知道将-feature
传递给scalac会打印一份关于我所收到的警告的详细报告,而且往往是关于如何修复这些警告的好建议。
但是,我不能为我的生活弄清楚如何将这个论点传递给fsc
任务。是否尚未支持?我错过了一些明显会让我后悔问这个问题的事吗?
答案 0 :(得分:0)
请在下面尝试,根据scala doc,fsc ant任务应与scalac共享相同的属性
<scalac srcdir="${scala.src.dir}"
destdir="${build.dir}"
classpathref="build.classpath"
addparams="-feature">
<include name="**/*.scala" />
</scalac>