Skip to content

Commit

Permalink
Update tests/spicy/types/bitfield/ctor-fail.spicy
Browse files Browse the repository at this point in the history
Co-authored-by: Benjamin Bannier <bbannier@users.noreply.github.com>
  • Loading branch information
rsmmr and bbannier authored Sep 7, 2023
1 parent 4fc35b4 commit 27fb006
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/spicy/types/bitfield/ctor-fail.spicy
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public type Foo = unit {
a: 1..3 = 255; # error
b: 1..3 = 8; # error
c: 1..3 = 7; # ok
d: 4..7 = -1;
e: 4..7 = "42";
d: 4..7 = -1; # error
e: 4..7 = "42"; # error
};
};

0 comments on commit 27fb006

Please sign in to comment.