mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-30 22:01:37 +00:00
fix: Insert a generic arg for impl Trait
when lowering generic args
This commit is contained in:
parent
aa00ddcf65
commit
8fa454d7aa
2 changed files with 24 additions and 0 deletions
|
@ -2122,3 +2122,22 @@ fn test() {
|
|||
"#,
|
||||
)
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn issue_17191() {
|
||||
check_types(
|
||||
r#"
|
||||
trait A {
|
||||
type Item;
|
||||
}
|
||||
|
||||
trait B<T> {}
|
||||
|
||||
fn foo<T: B<impl A>>() {}
|
||||
|
||||
fn test() {
|
||||
let f = foo;
|
||||
//^ fn foo<{unknown}>()
|
||||
}"#,
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue