-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
where-syntax accepts ; as separator in 0.6 #23211
Comments
How would one use the fact that it's a syntax error on 0.7? Are you asking to allow the semicolon on 0.7 or disallow it on 0.6? |
I think it's possible to allow to parse it but then throw an error later. This seems what's going on in 0.7:
That way the syntax can be used in macros. |
This can't easily be backported since on 0.6 |
Ok, not to worry. I'll just have to drop 0.6 compatibility when moving to 0.7. |
That is what we will be encouraging all package maintainers to do once 0.7/1.0 is released. |
On 0.6 this works but shouldn't (note the
;
):In 0.7 this errors as expected. Could this be back-ported to 0.6? This is a feature I plan to use in SimpleTraits.jl.
The text was updated successfully, but these errors were encountered: