summaryrefslogtreecommitdiff
path: root/test/files/run/t6273.check
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t6273.check')
-rw-r--r--test/files/run/t6273.check19
1 files changed, 19 insertions, 0 deletions
diff --git a/test/files/run/t6273.check b/test/files/run/t6273.check
new file mode 100644
index 0000000000..c1c18daac2
--- /dev/null
+++ b/test/files/run/t6273.check
@@ -0,0 +1,19 @@
+Type in expressions to have them evaluated.
+Type :help for more information.
+
+scala>
+
+scala> val y = 55
+y: Int = 55
+
+scala> val x = s"""
+ y = $y
+"""
+x: String =
+"
+ y = 55
+"
+
+scala>
+
+scala>