summaryrefslogtreecommitdiff
path: root/test/files/run/repl-paste-5.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/repl-paste-5.scala')
-rw-r--r--test/files/run/repl-paste-5.scala18
1 files changed, 18 insertions, 0 deletions
diff --git a/test/files/run/repl-paste-5.scala b/test/files/run/repl-paste-5.scala
new file mode 100644
index 0000000000..890f47f141
--- /dev/null
+++ b/test/files/run/repl-paste-5.scala
@@ -0,0 +1,18 @@
+
+import scala.tools.partest.ReplTest
+
+object Test extends ReplTest {
+ //def code = ":paste < EOF\n" + (
+ def code =
+ """
+:paste < EOF
+class C { def c = 42 }
+EOF
+new C().c
+:paste <| EOF
+ |class D { def d = 42 }
+EOF
+new D().d
+ """
+ //)
+}