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.
r#keyword
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
If put Rust keyword in a #[test] function name like r#for r#while r#break etc, e.g.
keyword
r#for
r#while
r#break
#[test] fn r#mod(){ //... }
then run test, the test case will be auto filtered out without warning/error. output:
running 0 tests test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 1 filtered out; finished in 0.00s
is it by design, or an unintentional bug?
env: VScode+RA on nightly channel Rust
The text was updated successfully, but these errors were encountered:
This seems to be a rust-analyzer bug. cargo test works just fine for me.
cargo test
Sorry, something went wrong.
Name
rust-lang/rust-analyzer@cee1e15
Successfully merging a pull request may close this issue.
Uh oh!
There was an error while loading. Please reload this page.
If put Rust
keyword
in a #[test] function name liker#for
r#while
r#break
etc, e.g.then run test, the test case will be auto filtered out without warning/error.
output:
is it by design, or an unintentional bug?
env: VScode+RA on nightly channel Rust
The text was updated successfully, but these errors were encountered: