You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
test.rs:10:13: 10:35 warning: unused import, #[warn(unused_imports)] on by default
test.rs:10 let _ = quote_expr!(cx, $idx);
^~~~~~~~~~~~~~~~~~~~~~
note: in expansion of quote_expr!
test.rs:10:13: 10:35 note: expansion site
test.rs:10:13: 10:35 warning: unused import, #[warn(unused_imports)] on by default
test.rs:10 let _ = quote_expr!(cx, $idx);
^~~~~~~~~~~~~~~~~~~~~~
note: in expansion of quote_expr!
test.rs:10:13: 10:35 note: expansion site
The text was updated successfully, but these errors were encountered:
As part of removing `pub use` glob, two extra import globs were
injected to make `quote_expr!` work. However the globs caused
`unused_import` warning in some places.
Quasiquoter needed the globs since it generated idents (e.g. `TyU`)
rather than absolute paths (`::syntax::ast::TyU`).
This patch removes the extra globs and makes quasiquoter use absolute
paths.
Fixes#14618
cc @sfackler
…meter-hints-toggle, r=Veykril
fix: `editor.parameterHints.enabled` not always being respected
rust-lang#13472
When accepting a suggestion, the parameter hints would always trigger automatically. This PR provides the ability for users to toggle this functionality off by specifying the new "rust-analyzer.autoTriggerParameterHints" option in `settings.json`. Possible options are `true` and `false`. It's `true` by default.
bors
pushed a commit
to rust-lang-ci/rust
that referenced
this issue
Apr 22, 2025
To avoid crashing Clippy, the `bug!()` is used only when debug
assertions are enabled. In regular usage, the result will be the same as
before, but without the extra line printed on the standard output which
has the potential for disrupting shell scripts.
changelog: none
The text was updated successfully, but these errors were encountered: