-
Notifications
You must be signed in to change notification settings - Fork 12.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
72 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#![feature(more_maybe_bounds)] | ||
|
||
trait Trait {} | ||
fn foo<T: ?Trait + ?Trait>(_: T) {} | ||
//~^ ERROR type parameter has more than one relaxed default bound, only one is supported | ||
//~| WARN relaxing a default bound only does something for `?Sized`; all other traits are not bound by default | ||
//~| WARN relaxing a default bound only does something for `?Sized`; all other traits are not bound by default | ||
|
||
fn main() {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
error[E0203]: type parameter has more than one relaxed default bound, only one is supported | ||
--> $DIR/maybe-polarity-repeated.rs:4:11 | ||
| | ||
LL | fn foo<T: ?Trait + ?Trait>(_: T) {} | ||
| ^^^^^^ ^^^^^^ | ||
|
||
warning: relaxing a default bound only does something for `?Sized`; all other traits are not bound by default | ||
--> $DIR/maybe-polarity-repeated.rs:4:11 | ||
| | ||
LL | fn foo<T: ?Trait + ?Trait>(_: T) {} | ||
| ^^^^^^ | ||
|
||
warning: relaxing a default bound only does something for `?Sized`; all other traits are not bound by default | ||
--> $DIR/maybe-polarity-repeated.rs:4:20 | ||
| | ||
LL | fn foo<T: ?Trait + ?Trait>(_: T) {} | ||
| ^^^^^^ | ||
|
||
error: aborting due to 1 previous error; 2 warnings emitted | ||
|
||
For more information about this error, try `rustc --explain E0203`. |