Skip to content

Commit f424ef6

Browse files
committed
Add regression test for #1628.
Looks like this was already fixed by #1615. Close #1628.
1 parent b6e6bfc commit f424ef6

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

test/tall/regression/1600/1628.unit

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
>>>
2+
bool f(bool b, int i) {
3+
return // Check b.
4+
b == true || i.isEven;
5+
}
6+
<<<
7+
bool f(bool b, int i) {
8+
return // Check b.
9+
b == true || i.isEven;
10+
}

0 commit comments

Comments
 (0)