summaryrefslogtreecommitdiff
path: root/test/files/run/repl-paste.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/repl-paste.scala')
-rw-r--r--test/files/run/repl-paste.scala20
1 files changed, 10 insertions, 10 deletions
diff --git a/test/files/run/repl-paste.scala b/test/files/run/repl-paste.scala
index e2ebab1e45..5495505353 100644
--- a/test/files/run/repl-paste.scala
+++ b/test/files/run/repl-paste.scala
@@ -3,17 +3,17 @@ import scala.tools.partest.ReplTest
object Test extends ReplTest {
def code = ":paste\n" + (
"""
- class Dingus
- {
- private val x = 5
- def y = Dingus.x * 2
- }
- object Dingus
- {
- private val x = 55
- }
+class Dingus
+{
+ private val x = 5
+ def y = Dingus.x * 2
+}
+object Dingus
+{
+ private val x = 55
+}
- val x = (new Dingus).y
+val x = (new Dingus).y
"""
)
} \ No newline at end of file