Skip to content

Commit

Permalink
Remove irrelevant comments
Browse files Browse the repository at this point in the history
  • Loading branch information
lorchrob committed Oct 5, 2023
1 parent d337058 commit b1ed16d
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
const X: subrange [0, 2] of int;
const O: subrange [0, 1] of int;
const M: subrange [0, 2] of int = O + X;
--const A: int^3 = [2, 3, 4];
node main() returns ();
let
check M <= 2;
Expand Down
1 change: 0 additions & 1 deletion tests/regression/success/global_subrange_bug.lus
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
const X = 2;
const Y: subrange [0, 4] of int = X;
const M: subrange [0, 2] of int = Y;
--const A: int^3 = [2, 3, 4];
node main() returns ();
let
check M <= 2;
Expand Down

0 comments on commit b1ed16d

Please sign in to comment.