diff options
| author | bors <bors@rust-lang.org> | 2021-03-30 11:44:36 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2021-03-30 11:44:36 +0000 |
| commit | 16156fb2787f745e57504197bd7fe38b69c6cbea (patch) | |
| tree | 8629975b2f2fb968c84444d7090f746f0a7a98e2 /src/test/ui/issues | |
| parent | 689e8470ffa7aeca17cfee428704a4d6c4148c11 (diff) | |
| parent | 5b467787b625d83d5cf210e70d56487e53ce4255 (diff) | |
| download | rust-16156fb2787f745e57504197bd7fe38b69c6cbea.tar.gz rust-16156fb2787f745e57504197bd7fe38b69c6cbea.zip | |
Auto merge of #83674 - Dylan-DPC:rollup-bcuc1hl, r=Dylan-DPC
Rollup of 7 pull requests Successful merges: - #83568 (update comment at MaybeUninit::uninit_array) - #83571 (Constantify some slice methods) - #83579 (Improve pointer arithmetic docs) - #83645 (Wrap non-pre code blocks) - #83656 (Add a regression test for issue-82865) - #83662 (Update books) - #83667 (Suggest box/pin/arc ing receiver on method calls) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
Diffstat (limited to 'src/test/ui/issues')
| -rw-r--r-- | src/test/ui/issues/issue-2823.stderr | 8 | ||||
| -rw-r--r-- | src/test/ui/issues/issue-69725.stderr | 8 |
2 files changed, 0 insertions, 16 deletions
diff --git a/src/test/ui/issues/issue-2823.stderr b/src/test/ui/issues/issue-2823.stderr index e044352e954..b3bc946292f 100644 --- a/src/test/ui/issues/issue-2823.stderr +++ b/src/test/ui/issues/issue-2823.stderr @@ -6,14 +6,6 @@ LL | struct C { ... LL | let _d = c.clone(); | ^^^^^ method not found in `C` - | - ::: $SRC_DIR/core/src/clone.rs:LL:COL - | -LL | fn clone(&self) -> Self; - | ----- - | | - | the method is available for `Arc<C>` here - | the method is available for `Rc<C>` here | = help: items from traits can only be used if the trait is implemented and in scope = note: the following trait defines an item `clone`, perhaps you need to implement it: diff --git a/src/test/ui/issues/issue-69725.stderr b/src/test/ui/issues/issue-69725.stderr index 48c71d76af0..4dd6b4bbb68 100644 --- a/src/test/ui/issues/issue-69725.stderr +++ b/src/test/ui/issues/issue-69725.stderr @@ -8,14 +8,6 @@ LL | let _ = Struct::<A>::new().clone(); | LL | pub struct Struct<A>(A); | ------------------------ doesn't satisfy `Struct<A>: Clone` - | - ::: $SRC_DIR/core/src/clone.rs:LL:COL - | -LL | fn clone(&self) -> Self; - | ----- - | | - | the method is available for `Arc<Struct<A>>` here - | the method is available for `Rc<Struct<A>>` here | = note: the following trait bounds were not satisfied: `A: Clone` |
