rascal icon indicating copy to clipboard operation
rascal copied to clipboard

Interpolation of non-string values into locations throws dynamic type errors

Open tvdstorm opened this issue 3 years ago • 0 comments

Reproduce:

rascal>int x = 3;
int: 3
rascal>|file:///bla-<x>|
|prompt:///|(14,1,<1,14>,<1,15>): addition not supported on str and int
Advice: |http://tutor.rascal-mpl.org/Errors/Static/UnsupportedOperation/UnsupportedOperation.html|
ok
rascal>bool b = true;
bool: true
rascal>|file:///bla-<b>|
|prompt:///|(14,1,<1,14>,<1,15>): addition not supported on str and bool
Advice: |http://tutor.rascal-mpl.org/Errors/Static/UnsupportedOperation/UnsupportedOperation.html|

tvdstorm avatar Aug 05 '22 22:08 tvdstorm