Skip to content

Commit 9e38c8a

Browse files
[Glint/RunTest] Avoid Warnings
1 parent 9c9e833 commit 9e38c8a

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

tst/runtest/corpus/glint/serialisation_block.org

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Test serialisation and deserialisation of block expressions.
1313
#+begin_src glint
1414
module foo_serialise_block;
1515
export x :: template(e : expr)
16-
{e; 69};
16+
{void e; 69};
1717
#+end_src
1818

1919
#+NAME: status

tst/runtest/corpus/glint/serialisation_while.org

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Test serialisation and deserialisation of while expressions.
1515
#+begin_src glint
1616
module foo_serialise_while;
1717
export x :: template(e : expr)
18-
while 0, 0;
18+
while 0, void 0;
1919
#+end_src
2020

2121
#+NAME: status

0 commit comments

Comments
 (0)