diff options
| author | Eduard-Mihai Burtescu <edy.burt@gmail.com> | 2017-05-29 14:55:54 +0300 |
|---|---|---|
| committer | Eduard-Mihai Burtescu <edy.burt@gmail.com> | 2017-06-01 08:59:47 +0300 |
| commit | 5fb37beecdb7827aada42a2ab4e7e0228d02c13a (patch) | |
| tree | 63f45683a0b5845b7954d5e4d28c496efedd2086 /src/test/ui/impl-trait | |
| parent | 58632f3c1ce2a6a9ff3d92e12d912a073b28414d (diff) | |
| download | rust-5fb37beecdb7827aada42a2ab4e7e0228d02c13a.tar.gz rust-5fb37beecdb7827aada42a2ab4e7e0228d02c13a.zip | |
tests: fix fallout from changing the span of binop errors.
Diffstat (limited to 'src/test/ui/impl-trait')
| -rw-r--r-- | src/test/ui/impl-trait/equality.stderr | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/ui/impl-trait/equality.stderr b/src/test/ui/impl-trait/equality.stderr index a08e77a2151..2206234b777 100644 --- a/src/test/ui/impl-trait/equality.stderr +++ b/src/test/ui/impl-trait/equality.stderr @@ -8,10 +8,10 @@ error[E0308]: mismatched types found type `u32` error[E0277]: the trait bound `u32: std::ops::Add<impl Foo>` is not satisfied - --> $DIR/equality.rs:34:9 + --> $DIR/equality.rs:34:11 | 34 | n + sum_to(n - 1) - | ^^^^^^^^^^^^^^^^^ no implementation for `u32 + impl Foo` + | ^ no implementation for `u32 + impl Foo` | = help: the trait `std::ops::Add<impl Foo>` is not implemented for `u32` |
