]> git.lizzy.rs Git - rust.git/commitdiff
Deal with spans showing `std` lib
authorEsteban Küber <esteban@kuber.com.ar>
Sun, 2 Feb 2020 21:51:23 +0000 (13:51 -0800)
committerEsteban Küber <esteban@kuber.com.ar>
Sun, 2 Feb 2020 21:51:23 +0000 (13:51 -0800)
Address #53081

src/test/ui/suggestions/imm-ref-trait-object.rs
src/test/ui/suggestions/imm-ref-trait-object.stderr
src/test/ui/traits/trait-alias/trait-alias-object-fail.rs
src/test/ui/traits/trait-alias/trait-alias-object-fail.stderr

index 288d6c699f59a03a38335fea9aef48938e33288b..241dde9fec1d61e2d116f36fc8f267884cacee00 100644 (file)
@@ -1,3 +1,8 @@
+// FIXME: missing sysroot spans (#53081)
+// ignore-i586-unknown-linux-gnu
+// ignore-i586-unknown-linux-musl
+// ignore-i686-unknown-linux-musl
+
 fn test(t: &dyn Iterator<Item=&u64>) -> u64 {
      t.min().unwrap() //~ ERROR the `min` method cannot be invoked on a trait object
 }
index 37c20535229610f60879c7fe58763e0d164e9128..c5fe6ddb8a9bf852794b02a36795ab89851a0dd9 100644 (file)
@@ -1,5 +1,5 @@
 error: the `min` method cannot be invoked on a trait object
-  --> $DIR/imm-ref-trait-object.rs:2:8
+  --> $DIR/imm-ref-trait-object.rs:7:8
    |
 LL |      t.min().unwrap()
    |        ^^^
index d62fd7e59c9204b6c89f8f643d283ff665d8d1b0..3be8db8663ab713ed473b4c1a527fbac93f19001 100644 (file)
@@ -1,3 +1,8 @@
+// FIXME: missing sysroot spans (#53081)
+// ignore-i586-unknown-linux-gnu
+// ignore-i586-unknown-linux-musl
+// ignore-i686-unknown-linux-musl
+
 #![feature(trait_alias)]
 
 trait EqAlias = Eq;
index 56ecb7256f8cde343effcbf6909f2b09a901f338..21818097bd6a0c0e0a644350e4cf8036f75b0d47 100644 (file)
@@ -1,5 +1,5 @@
 error[E0038]: the trait `std::cmp::Eq` cannot be made into an object
-  --> $DIR/trait-alias-object-fail.rs:7:13
+  --> $DIR/trait-alias-object-fail.rs:12:13
    |
 LL |     let _: &dyn EqAlias = &123;
    |             ^^^^^^^^^^^ the trait `std::cmp::Eq` cannot be made into an object
@@ -10,7 +10,7 @@ LL | pub trait Eq: PartialEq<Self> {
    |               --------------- the trait cannot be made into an object because it uses `Self` as a type parameter in this
 
 error[E0191]: the value of the associated type `Item` (from trait `std::iter::Iterator`) must be specified
-  --> $DIR/trait-alias-object-fail.rs:9:17
+  --> $DIR/trait-alias-object-fail.rs:14:17
    |
 LL |     let _: &dyn IteratorAlias = &vec![123].into_iter();
    |                 ^^^^^^^^^^^^^ help: specify the associated type: `IteratorAlias<Item = Type>`