Files
kotlin-fork/compiler/integration-tests/testData/ant/jvm/wrongArguments/build.xml
T
2014-08-13 11:10:39 +04:00

10 lines
367 B
XML

<project name="Ant Task Test" default="build">
<taskdef resource="org/jetbrains/jet/buildtools/ant/antlib.xml" classpath="${kotlin.lib}/kotlin-ant.jar"/>
<target name="build">
<kotlinc src="${test.data}/hello.kt" output="${temp}/hello.jar">
<compilerarg value="-option-never-to-be-supported"/>
</kotlinc>
</target>
</project>