]> git.proxmox.com Git - rustc.git/blame - src/test/ui/issues/issue-6738.stderr
New upstream version 1.45.0+dfsg1
[rustc.git] / src / test / ui / issues / issue-6738.stderr
CommitLineData
8faf50e0 1error[E0368]: binary assignment operation `+=` cannot be applied to type `T`
0731742a 2 --> $DIR/issue-6738.rs:6:9
8faf50e0
XL
3 |
4LL | self.x += v.x;
5 | ------^^^^^^^
6 | |
7 | cannot use `+=` on type `T`
8 |
f9f354fc
XL
9help: consider restricting type parameter `T`
10 |
11LL | impl<T: std::ops::AddAssign> Foo<T> {
12 | ^^^^^^^^^^^^^^^^^^^^^
8faf50e0
XL
13
14error: aborting due to previous error
15
16For more information about this error, try `rustc --explain E0368`.