We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
Dotty version = 0.24.0-bin-20200412-bd1fff2-NIGHTLY
0.24.0-bin-20200412-bd1fff2-NIGHTLY
The following code examples are all allowed even though I don't think they should be.
3 match case 3 => ??? end match case _ => () end match
if 3 == 3 () end if else () end if
class Test { val test = 3 end Test }
while 3 == 3 end while do ()
for a <- Seq() end for do ()
It seems that there should be a check that enforces end markers are really at the end and not in between as well as in template blocks
The text was updated successfully, but these errors were encountered:
Fix scala#8731: Revise end markers scheme
b8de867
Handle end markers in parser instead of in Scanner, adding end markers to the context free syntax.
bdf18e9
Merge pull request #8747 from dotty-staging/fix-#8731
c986fdd
Fix #8731: Revise end markers scheme
No branches or pull requests
Dotty version =
0.24.0-bin-20200412-bd1fff2-NIGHTLY
Minimized code
The following code examples are all allowed even though I don't think they should be.
Expectation
It seems that there should be a check that enforces end markers are really at the end and not in between as well as in template blocks
The text was updated successfully, but these errors were encountered: