Skip to content

Commit 4b17d31

Browse files
committedJun 22, 2018
Auto merge of #51463 - estebank:error-codes, r=nikomatsakis
Various changes to existing diagnostics * [Add code to `invalid ABI` error, add span label, move list to help to make message shorter](23ae5af): ``` error[E0697]: invalid ABI: found `路濫狼á́́` --> $DIR/unicode.rs:11:8 | LL | extern "路濫狼á́́" fn foo() {} //~ ERROR invalid ABI | ^^^^^^^^^ invalid ABI | = help: valid ABIs: cdecl, stdcall, fastcall, vectorcall, thiscall, aapcs, win64, sysv64, ptx-kernel, msp430-interrupt, x86-interrupt, Rust, C, system, rust-intrinsic, rust-call, platform-intrinsic, unadjusted ``` * [Add code to incorrect `pub` restriction error](e96fdea) * [Add message to `rustc_on_unimplemented` attributes in core to have them set a custom message _and_ label](2cc7e5e): ``` error[E0277]: `W` does not have a constant size known at compile-time --> $DIR/unsized-enum2.rs:33:8 | LL | VA(W), | ^ `W` does not have a constant size known at compile-time | = help: the trait `std::marker::Sized` is not implemented for `W` = help: consider adding a `where W: std::marker::Sized` bound = note: no field of an enum variant may have a dynamically sized type ``` ``` error[E0277]: `Foo` cannot be sent between threads safely --> $DIR/E0277-2.rs:26:5 | LL | is_send::<Foo>(); | ^^^^^^^^^^^^^^ `Foo` cannot be sent between threads safely | = help: the trait `std::marker::Send` is not implemented for `Foo` ``` ``` error[E0277]: can't compare `{integer}` with `std::string::String` --> $DIR/binops.rs:16:7 | LL | 5 < String::new(); | ^ no implementation for `{integer} < std::string::String` and `{integer} > std::string::String` | = help: the trait `std::cmp::PartialOrd<std::string::String>` is not implemented for `{integer}` ``` ``` error[E0277]: can't compare `{integer}` with `std::result::Result<{integer}, _>` --> $DIR/binops.rs:17:7 | LL | 6 == Ok(1); | ^^ no implementation for `{integer} == std::result::Result<{integer}, _>` | = help: the trait `std::cmp::PartialEq<std::result::Result<{integer}, _>>` is not implemented for `{integer}` ``` ``` error[E0277]: a collection of type `i32` cannot be built from an iterator over elements of type `i32` --> $DIR/type-check-defaults.rs:16:19 | LL | struct WellFormed<Z = Foo<i32, i32>>(Z); | ^ a collection of type `i32` cannot be built from `std::iter::Iterator<Item=i32>` | = help: the trait `std::iter::FromIterator<i32>` is not implemented for `i32` note: required by `Foo` --> $DIR/type-check-defaults.rs:15:1 | LL | struct Foo<T, U: FromIterator<T>>(T, U); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ``` * [Add link to book for `Sized` errors](1244dc7): ``` error[E0277]: `std::fmt::Debug + std::marker::Sync + 'static` does not have a constant size known at compile-time --> $DIR/const-unsized.rs:13:29 | LL | const CONST_0: Debug+Sync = *(&0 as &(Debug+Sync)); | ^^^^^^^^^^^^^^^^^^^^^^ `std::fmt::Debug + std::marker::Sync + 'static` does not have a constant size known at compile-time | = help: the trait `std::marker::Sized` is not implemented for `std::fmt::Debug + std::marker::Sync + 'static` = note: to learn more, visit <https://doc.rust-lang.org/book/second-edition/ch19-04-advanced-types.html#dynamically-sized-types--sized> = note: constant expressions must have a statically known size ``` * [Point to previous line for single expected token not found](4816516) (if the current token is in a different line)
2 parents 0b8d817 + 28cea50 commit 4b17d31

File tree

117 files changed

+559
-376
lines changed

Some content is hidden

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

117 files changed

+559
-376
lines changed
 

‎src/liballoc/vec.rs

+8-2
Original file line numberDiff line numberDiff line change
@@ -1693,7 +1693,10 @@ impl<T: Hash> Hash for Vec<T> {
16931693
}
16941694

16951695
#[stable(feature = "rust1", since = "1.0.0")]
1696-
#[rustc_on_unimplemented = "vector indices are of type `usize` or ranges of `usize`"]
1696+
#[rustc_on_unimplemented(
1697+
message="vector indices are of type `usize` or ranges of `usize`",
1698+
label="vector indices are of type `usize` or ranges of `usize`",
1699+
)]
16971700
impl<T, I> Index<I> for Vec<T>
16981701
where
16991702
I: ::core::slice::SliceIndex<[T]>,
@@ -1707,7 +1710,10 @@ where
17071710
}
17081711

17091712
#[stable(feature = "rust1", since = "1.0.0")]
1710-
#[rustc_on_unimplemented = "vector indices are of type `usize` or ranges of `usize`"]
1713+
#[rustc_on_unimplemented(
1714+
message="vector indices are of type `usize` or ranges of `usize`",
1715+
label="vector indices are of type `usize` or ranges of `usize`",
1716+
)]
17111717
impl<T, I> IndexMut<I> for Vec<T>
17121718
where
17131719
I: ::core::slice::SliceIndex<[T]>,

‎src/libcore/cmp.rs

+8-2
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,10 @@ use self::Ordering::*;
108108
#[stable(feature = "rust1", since = "1.0.0")]
109109
#[doc(alias = "==")]
110110
#[doc(alias = "!=")]
111-
#[rustc_on_unimplemented = "can't compare `{Self}` with `{Rhs}`"]
111+
#[rustc_on_unimplemented(
112+
message="can't compare `{Self}` with `{Rhs}`",
113+
label="no implementation for `{Self} == {Rhs}`",
114+
)]
112115
pub trait PartialEq<Rhs: ?Sized = Self> {
113116
/// This method tests for `self` and `other` values to be equal, and is used
114117
/// by `==`.
@@ -611,7 +614,10 @@ impl PartialOrd for Ordering {
611614
#[doc(alias = "<")]
612615
#[doc(alias = "<=")]
613616
#[doc(alias = ">=")]
614-
#[rustc_on_unimplemented = "can't compare `{Self}` with `{Rhs}`"]
617+
#[rustc_on_unimplemented(
618+
message="can't compare `{Self}` with `{Rhs}`",
619+
label="no implementation for `{Self} < {Rhs}` and `{Self} > {Rhs}`",
620+
)]
615621
pub trait PartialOrd<Rhs: ?Sized = Self>: PartialEq<Rhs> {
616622
/// This method returns an ordering between `self` and `other` values if one exists.
617623
///

0 commit comments

Comments
 (0)