summaryrefslogtreecommitdiff
path: root/test/files/run/t6273.check
blob: c1c18daac2120a94669574db40c2478f065f819c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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>