Skip to content

Commit 58afbb5

Browse files
committed
Add regression tests
1 parent 581569f commit 58afbb5

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tests/run/quote-simple-hole.scala

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,12 @@ object Test {
33
val x = '{0}
44
val y = '{$x}
55
val z = '{${'{$y}}}
6+
val a = '{{{$x}}}
7+
val b = '{{${{'{{$y}}}}}}
68
assert(x eq y)
79
assert(x eq z)
10+
assert(x eq a)
11+
assert(x eq b)
812

913
val i = '[Int]
1014
val j = '[$i]

0 commit comments

Comments
 (0)