mirror of
https://github.com/rust-lang/rust.git
synced 2025-09-29 15:48:52 +00:00

Having multiple relaxed bounds like `?Sized + ?Iterator` is actually *fine*. We actually want to reject *duplicate* relaxed bounds like `?Sized + ?Sized` because these most certainly represent a user error. Note that this doesn't mean that we accept more code because a bound like `?Iterator` is still invalid as it's not relaxing a *default* trait and the only way to define / use more default bounds is under the experimental and internal feature `more_maybe_bounds` plus `lang_items` plus unstable flag `-Zexperimental-default-bounds` (historical context: for the longest time, bounds like `?Iterator` were actually allowed and lead to a hard warning). Ultimately, this simply *reframes* the diagnostic. The scope of `more_maybe_bounds` / `-Zexperimental-default-bounds` remains unchanged as well.
23 lines
952 B
Rust
23 lines
952 B
Rust
fn dupes<T: ?Sized + ?Sized + ?Iterator + ?Iterator>() {}
|
|
//~^ ERROR duplicate relaxed `Sized` bounds
|
|
//~| ERROR duplicate relaxed `Iterator` bounds
|
|
//~| ERROR bound modifier `?` can only be applied to `Sized`
|
|
//~| ERROR bound modifier `?` can only be applied to `Sized`
|
|
|
|
trait Trait {
|
|
// We used to say "type parameter has more than one relaxed default bound"
|
|
// even on *associated types* like here. Test that we no longer do that.
|
|
type Type: ?Sized + ?Sized;
|
|
//~^ ERROR duplicate relaxed `Sized` bounds
|
|
//~| ERROR duplicate relaxed `Sized` bounds
|
|
}
|
|
|
|
// We used to emit an additional error about "multiple relaxed default bounds".
|
|
// However, multiple relaxed bounds are actually *fine* if they're distinct.
|
|
// Ultimately, we still reject this because `Sized` is
|
|
// the only (stable) default trait, so we're fine.
|
|
fn not_dupes<T: ?Sized + ?Iterator>() {}
|
|
//~^ ERROR bound modifier `?` can only be applied to `Sized`
|
|
|
|
fn main() {}
|