summaryrefslogtreecommitdiff
path: root/test/files/run/repl-assign.check
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2011-04-05 01:48:31 +0000
committerPaul Phillips <paulp@improving.org>2011-04-05 01:48:31 +0000
commite50fbcc3b32d4d65deb98a06c644894d3561c81c (patch)
tree182009f58959df2f676a73c9bb33fc18bbfcead2 /test/files/run/repl-assign.check
parente06244cb55797d9928a52a22a548d547555be733 (diff)
downloadscala-e50fbcc3b32d4d65deb98a06c644894d3561c81c.tar.gz
scala-e50fbcc3b32d4d65deb98a06c644894d3561c81c.tar.bz2
scala-e50fbcc3b32d4d65deb98a06c644894d3561c81c.zip
Enhancing the repl-testing code by turning it i...
Enhancing the repl-testing code by turning it into a transcript producing machine. "Here's some code." "Here's a transcript!" "Good day to you, sir!" "No, good day to YOU!" These changes are awesome. Look at the checkfile diffs for god's sake, they'll make you weep with joy. No review.
Diffstat (limited to 'test/files/run/repl-assign.check')
-rw-r--r--test/files/run/repl-assign.check14
1 files changed, 10 insertions, 4 deletions
diff --git a/test/files/run/repl-assign.check b/test/files/run/repl-assign.check
index 0181985f08..c6b0458f04 100644
--- a/test/files/run/repl-assign.check
+++ b/test/files/run/repl-assign.check
@@ -2,13 +2,19 @@ Type in expressions to have them evaluated.
Type :help for more information.
scala>
-scala> x: Int = 10
-scala> y: Int = 11
+scala> var x = 10
+x: Int = 10
-scala> x: Int = 12
+scala> var y = 11
+y: Int = 11
-scala> y: Int = 13
+scala> x = 12
+x: Int = 12
+
+scala> y = 13
+y: Int = 13
scala>
+
scala>