Switch alts to use arrows
This commit is contained in:
parent
c9d2769379
commit
025d86624d
329 changed files with 8095 additions and 8423 deletions
|
@ -5,13 +5,13 @@
|
|||
|
||||
// Tests for alt as expressions resulting in structural types
|
||||
fn test_rec() {
|
||||
let rs = alt check true { true { {i: 100} } };
|
||||
let rs = alt check true { true => { {i: 100} } };
|
||||
assert (rs == {i: 100});
|
||||
}
|
||||
|
||||
fn test_tag() {
|
||||
enum mood { happy, sad, }
|
||||
let rs = alt true { true { happy } false { sad } };
|
||||
let rs = alt true { true => { happy } false => { sad } };
|
||||
assert (rs == happy);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue