diff options
| author | leonardo.yvens <leoyvens@gmail.com> | 2018-05-12 15:07:15 -0300 |
|---|---|---|
| committer | leonardo.yvens <leoyvens@gmail.com> | 2018-05-12 15:07:15 -0300 |
| commit | 6389f35ef985f6bf354b7cd848c94e446d08d2bc (patch) | |
| tree | f8efa48579165f30b230c47d079df7227c938c17 | |
| parent | 3deb75729eb08d930da90f2e9407b2f79f0025b7 (diff) | |
| download | rust-6389f35ef985f6bf354b7cd848c94e446d08d2bc.tar.gz rust-6389f35ef985f6bf354b7cd848c94e446d08d2bc.zip | |
Fix rebase
| -rw-r--r-- | src/test/ui/issue-50480.stderr | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/ui/issue-50480.stderr b/src/test/ui/issue-50480.stderr index 3714a0b72b7..f5281fec4d1 100644 --- a/src/test/ui/issue-50480.stderr +++ b/src/test/ui/issue-50480.stderr @@ -8,7 +8,7 @@ error[E0277]: the trait bound `i32: std::iter::Iterator` is not satisfied --> $DIR/issue-50480.rs:13:24 | LL | struct Foo(NotDefined, <i32 as Iterator>::Item, Vec<i32>, String); - | ^^^^^^^^^^^^^^^^^^^^^^^^ `i32` is not an iterator; maybe try calling `.iter()` or a similar method + | ^^^^^^^^^^^^^^^^^^^^^^^ `i32` is not an iterator; maybe try calling `.iter()` or a similar method | = help: the trait `std::iter::Iterator` is not implemented for `i32` @@ -19,7 +19,7 @@ LL | #[derive(Clone, Copy)] | ^^^^ LL | //~^ ERROR the trait `Copy` may not be implemented for this type LL | struct Foo(NotDefined, <i32 as Iterator>::Item, Vec<i32>, String); - | --------- ------- this field does not implement `Copy` + | -------- ------ this field does not implement `Copy` | | | this field does not implement `Copy` |
