Skip to content

Commit 47d7267

Browse files
committed
can reproduce
1 parent 32cff68 commit 47d7267

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
2+
import lib/core/bedrock.lsts;
3+
4+
let xs = (1,2);
5+
6+
assert( xs.first == 1 );
7+
assert( xs.second == 2 );
8+
9+
xs.first = 3;
10+
11+
assert( xs.first == 3 );
12+
assert( xs.second == 2 );

0 commit comments

Comments
 (0)