Skip to content

Commit

Permalink
Fixed last type error in test code
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulKlint committed Oct 17, 2024
1 parent 9999463 commit 6d4153c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -372,4 +372,4 @@ bool unsupportedInModule(str moduleText)
= checkModuleAndFilter(moduleText, unsupportedMsgs);

bool unsupported(str stmts) =
checkStatementsAndFilter(stmts);
checkStatementsAndFilter(stmts, unsupportedMsgs);
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
module lang::rascalcore::compile::Examples::Tst4

data X = x(tuple[int, value] a) | x(tuple[value, int] b);

void main(){
set[str] s = {};
s += "a";
Expand Down

0 comments on commit 6d4153c

Please sign in to comment.