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.
use<>
1 parent 4b506ca commit e6a8a13Copy full SHA for e6a8a13
src/tools/rust-analyzer/crates/hir-ty/src/display.rs
@@ -2328,6 +2328,7 @@ impl HirDisplayWithExpressionStore for TypeBound {
2328
store[*path].hir_fmt(f, store)
2329
}
2330
TypeBound::Use(args) => {
2331
+ write!(f, "use<")?;
2332
let edition = f.edition();
2333
let last = args.len().saturating_sub(1);
2334
for (idx, arg) in args.iter().enumerate() {
0 commit comments