aboutsummaryrefslogtreecommitdiff
path: root/tests/partest-test
diff options
context:
space:
mode:
Diffstat (limited to 'tests/partest-test')
-rw-r--r--tests/partest-test/i2147.check3
-rw-r--r--tests/partest-test/i2147.scala7
2 files changed, 10 insertions, 0 deletions
diff --git a/tests/partest-test/i2147.check b/tests/partest-test/i2147.check
new file mode 100644
index 000000000..64a4b735b
--- /dev/null
+++ b/tests/partest-test/i2147.check
@@ -0,0 +1,3 @@
+Felix is number 1
+ducksarethebest.org
+foolsRus.org
diff --git a/tests/partest-test/i2147.scala b/tests/partest-test/i2147.scala
new file mode 100644
index 000000000..dd9839838
--- /dev/null
+++ b/tests/partest-test/i2147.scala
@@ -0,0 +1,7 @@
+object Test {
+ def main(args: Array[String]): Unit = {
+ println("Guillaume is number 1")
+ System.out.println("ducksarethebest.com")
+ System.err.println("foolsRus.com")
+ }
+}