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.
1 parent 550c629 commit 1ec953fCopy full SHA for 1ec953f
crates/ra_ide/src/hover.rs
@@ -446,7 +446,7 @@ mod tests {
446
}
447
448
#[test]
449
- fn hover_omits_default_generic_types() {
+ fn hover_default_generic_types() {
450
check_hover_result(
451
r#"
452
//- /main.rs
@@ -458,7 +458,7 @@ struct Test<K, T = u8> {
458
fn main() {
459
let zz<|> = Test { t: 23, k: 33 };
460
}"#,
461
- &["Test<i32>"],
+ &["Test<i32, u8>"],
462
);
463
464
0 commit comments