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
impl 'lifetime + ...
When I apply a pattern against
fn foo<'a>(x: impl 'a + Clone ) {}
It fails to parse: ERROR (code: 300) - Error parsing source code at 1:10
ERROR (code: 300) - Error parsing source code at 1:10
The follow code works
fn foo<'a, T: 'a + Clone>(x: impl 'a + Clone ) {}
Which confirms that the issue is on impl 'a + Clone.
impl 'a + Clone
The text was updated successfully, but these errors were encountered:
impl 'static + Send
impl 'static + ...
This probably needs an upstream fix: https://github.com/tree-sitter/tree-sitter-rust
If it's working with the upstream Grammar we likely just need to bump our version.
Sorry, something went wrong.
Thanks! An issue about that was open yesterday. tree-sitter/tree-sitter-rust#234
No branches or pull requests
When I apply a pattern against
It fails to parse:
ERROR (code: 300) - Error parsing source code at 1:10
The follow code works
Which confirms that the issue is on
impl 'a + Clone
.The text was updated successfully, but these errors were encountered: