summaryrefslogtreecommitdiff
path: root/test/files/run/repl-paste.check
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/repl-paste.check')
-rw-r--r--test/files/run/repl-paste.check22
1 files changed, 11 insertions, 11 deletions
diff --git a/test/files/run/repl-paste.check b/test/files/run/repl-paste.check
index 50589433cd..d3e171fbfb 100644
--- a/test/files/run/repl-paste.check
+++ b/test/files/run/repl-paste.check
@@ -5,17 +5,17 @@ scala> :paste
// Entering paste mode (ctrl-D to finish)
- class Dingus
- {
- private val x = 5
- def y = Dingus.x * 2
- }
- object Dingus
- {
- private val x = 55
- }
-
- val x = (new Dingus).y
+class Dingus
+{
+ private val x = 5
+ def y = Dingus.x * 2
+}
+object Dingus
+{
+ private val x = 55
+}
+
+val x = (new Dingus).y
// Exiting paste mode, now interpreting.