2025-07-13 16:56:31 -04:00
|
|
|
// https://github.com/rust-lang/rust/issues/86756
|
2025-06-03 09:54:30 +02:00
|
|
|
//@ edition: 2015
|
2021-06-30 16:26:20 -07:00
|
|
|
trait Foo<T, T = T> {}
|
|
|
|
|
//~^ ERROR the name `T` is already used for a generic parameter in this item's generic parameters
|
|
|
|
|
|
|
|
|
|
fn eq<A, B>() {
|
|
|
|
|
eq::<dyn, Foo>
|
|
|
|
|
//~^ ERROR cannot find type `dyn` in this scope
|
|
|
|
|
//~| ERROR missing generics for trait `Foo`
|
|
|
|
|
//~| WARN trait objects without an explicit `dyn` are deprecated
|
|
|
|
|
//~| WARN this is accepted in the current edition
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn main() {}
|