blob: 34d82c0ddb0c9af71dc544018281cc64de206aba [file] [log] [blame]
error: type parameter `V` is part of concrete type but not used in parameter list for existential type
--> $DIR/generic_not_used.rs:18:73
|
LL | fn wrong_generic<U: 'static, V: 'static>(_: U, v: V) -> WrongGeneric<U> {
| _________________________________________________________________________^
LL | | //~^ ERROR type parameter `V` is part of concrete type but not used in parameter list
LL | | v
LL | | }
| |_^
error: aborting due to previous error