Skip to content
This repository was archived by the owner on May 28, 2025. It is now read-only.
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 00f677d

Browse files
committedApr 22, 2020
Auto merge of rust-lang#71424 - Dylan-DPC:rollup-iunh61a, r=Dylan-DPC
Rollup of 6 pull requests Successful merges: - rust-lang#70970 (Detect mistyped associated consts in `Instance::resolve`.) - rust-lang#71203 (Correct await span for async-await error reporting) - rust-lang#71214 (Add error code for inner doc error) - rust-lang#71337 (Moving all rustdoc-ui tests to check-pass) - rust-lang#71412 (Clarify unused_doc_comments note on macro invocations) - rust-lang#71414 (More diagnostic items for Clippy usage) Failed merges: r? @ghost
2 parents 4bfd62a + 01fdc88 commit 00f677d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+297
-103
lines changed
 

‎Cargo.lock

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4295,6 +4295,7 @@ version = "0.0.0"
42954295
dependencies = [
42964296
"log",
42974297
"rustc_data_structures",
4298+
"rustc_errors",
42984299
"rustc_hir",
42994300
"rustc_infer",
43004301
"rustc_middle",

‎src/liballoc/collections/vec_deque.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ const MAXIMUM_ZST_CAPACITY: usize = 1 << (64 - 1); // Largest possible power of
5050
/// [`pop_front`]: #method.pop_front
5151
/// [`extend`]: #method.extend
5252
/// [`append`]: #method.append
53+
#[cfg_attr(not(test), rustc_diagnostic_item = "vecdeque_type")]
5354
#[stable(feature = "rust1", since = "1.0.0")]
5455
pub struct VecDeque<T> {
5556
// tail and head are pointers into the buffer. Tail always points

0 commit comments

Comments
 (0)
This repository has been archived.