We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It looks like one of the two most recent commits to the scanner causes a bug on character literals. Input:
main cin cout = let x = 'h' // character literals should turn into integers, right? after 1, cout <- x ()
Expected Output:
h
Running at current head of main:
./runtests.sh tests/check_single_quotes.ssl check_single_quotes...FAILED ... ###### Testing check_single_quotes stack exec sslc -- tests/check_single_quotes.ssl > out/check_single_quotes.c ParseError (ErrorMsg "Could not escape string: ''") ###### FAILED
If I roll back three commits, to commit: e4d8bf2
./runtests.sh tests/check_single_quotes.ssl check_single_quotes...OK
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It looks like one of the two most recent commits to the scanner causes a bug on character literals.
Input:
Expected Output:
Running at current head of main:
If I roll back three commits, to commit: e4d8bf2
The text was updated successfully, but these errors were encountered: