forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adjust spacing in suggestion, add a test
- Loading branch information
1 parent
30e3673
commit 48281b0
Showing
9 changed files
with
50 additions
and
12 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
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,12 @@ | ||
use std::ops::Add; | ||
|
||
struct Wrapper<T>(T); | ||
|
||
trait Foo {} | ||
|
||
fn qux<T>(a: Wrapper<T>, b: T) -> T { | ||
a + b | ||
//~^ ERROR cannot add `T` to `Wrapper<T>` | ||
} | ||
|
||
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,26 @@ | ||
error[E0369]: cannot add `T` to `Wrapper<T>` | ||
--> $DIR/restrict-type-not-param.rs:8:7 | ||
| | ||
LL | a + b | ||
| - ^ - T | ||
| | | ||
| Wrapper<T> | ||
| | ||
note: an implementation of `Add<_>` might be missing for `Wrapper<T>` | ||
--> $DIR/restrict-type-not-param.rs:3:1 | ||
| | ||
LL | struct Wrapper<T>(T); | ||
| ^^^^^^^^^^^^^^^^^ must implement `Add<_>` | ||
note: the following trait must be implemented | ||
--> $SRC_DIR/core/src/ops/arith.rs:LL:COL | ||
| | ||
LL | pub trait Add<Rhs = Self> { | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
help: consider introducing a `where` clause, but there might be an alternative better way to express this requirement | ||
| | ||
LL | fn qux<T>(a: Wrapper<T>, b: T) -> T where Wrapper<T>: Add<T, Output = T> { | ||
| ++++++++++++++++++++++++++++++++++++ | ||
|
||
error: aborting due to previous error | ||
|
||
For more information about this error, try `rustc --explain E0369`. |
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