You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
rascal>data C = c();
ok
rascal>data B = and(B,B) | or(C, C) | d();
|prompt:///|(20,8,<1,20>,<1,28>): The field name arg1 is illegally used for both C and B in type B
Advice: |https://www.rascal-mpl.org/docs/Rascal/Errors/CompileTimeErrors/RedeclaredField|
ok
breaks in different kinds of ways. first warnings are printed and then constructor calls don't work
rascal>and(d(),d())
|prompt:///|(4,1,<1,4>,<1,5>): Undeclared variable: d
Advice: |https://www.rascal-mpl.org/docs/Rascal/Errors/CompileTimeErrors/UndeclaredVariable|
ok
The text was updated successfully, but these errors were encountered:
Describe the bug
breaks in different kinds of ways. first warnings are printed and then constructor calls don't work
The text was updated successfully, but these errors were encountered: