summaryrefslogtreecommitdiff
path: root/test/files/run/t7711-script-args.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t7711-script-args.scala')
-rw-r--r--test/files/run/t7711-script-args.scala7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/files/run/t7711-script-args.scala b/test/files/run/t7711-script-args.scala
new file mode 100644
index 0000000000..02535aa954
--- /dev/null
+++ b/test/files/run/t7711-script-args.scala
@@ -0,0 +1,7 @@
+
+import scala.tools.partest.ScriptTest
+
+object Test extends ScriptTest {
+ override def extraSettings = s"${super.extraSettings} -Xlint"
+ override def argv = Seq("good", "news")
+}