about summary refs log tree commit diff
path: root/src/test/ui/cast
diff options
context:
space:
mode:
authorVadim Petrochenkov <vadim.petrochenkov@gmail.com>2019-03-09 15:03:44 +0300
committerVadim Petrochenkov <vadim.petrochenkov@gmail.com>2019-03-11 23:10:26 +0300
commitfa72a81bea27f1fda4287475e4cc2f684c971e7f (patch)
treee691a2e38d57c5cd37932754ddf1d8a7048f1f54 /src/test/ui/cast
parent2060d49c39e41a286b0425cb2f7ba6022a2d4b96 (diff)
downloadrust-fa72a81bea27f1fda4287475e4cc2f684c971e7f.tar.gz
rust-fa72a81bea27f1fda4287475e4cc2f684c971e7f.zip
Update tests
Diffstat (limited to 'src/test/ui/cast')
-rw-r--r--src/test/ui/cast/cast-as-bool.stderr6
-rw-r--r--src/test/ui/cast/cast-errors-issue-43825.stderr2
-rw-r--r--src/test/ui/cast/cast-ptr-to-int-const.stderr4
-rw-r--r--src/test/ui/cast/cast-to-unsized-trait-object-suggestion.stderr4
4 files changed, 8 insertions, 8 deletions
diff --git a/src/test/ui/cast/cast-as-bool.stderr b/src/test/ui/cast/cast-as-bool.stderr
index 6099a4195b3..30f8459c2e1 100644
--- a/src/test/ui/cast/cast-as-bool.stderr
+++ b/src/test/ui/cast/cast-as-bool.stderr
@@ -1,19 +1,19 @@
 error[E0054]: cannot cast as `bool`
   --> $DIR/cast-as-bool.rs:2:13
    |
-LL |     let u = 5 as bool; //~ ERROR cannot cast as `bool`
+LL |     let u = 5 as bool;
    |             ^^^^^^^^^ help: compare with zero instead: `5 != 0`
 
 error[E0054]: cannot cast as `bool`
   --> $DIR/cast-as-bool.rs:5:13
    |
-LL |     let t = (1 + 2) as bool; //~ ERROR cannot cast as `bool`
+LL |     let t = (1 + 2) as bool;
    |             ^^^^^^^^^^^^^^^ help: compare with zero instead: `(1 + 2) != 0`
 
 error[E0054]: cannot cast as `bool`
   --> $DIR/cast-as-bool.rs:8:13
    |
-LL |     let v = "hello" as bool; //~ ERROR cannot cast as `bool`
+LL |     let v = "hello" as bool;
    |             ^^^^^^^^^^^^^^^ unsupported cast
 
 error: aborting due to 3 previous errors
diff --git a/src/test/ui/cast/cast-errors-issue-43825.stderr b/src/test/ui/cast/cast-errors-issue-43825.stderr
index cfd1ca25a96..1e77f5dbdc6 100644
--- a/src/test/ui/cast/cast-errors-issue-43825.stderr
+++ b/src/test/ui/cast/cast-errors-issue-43825.stderr
@@ -1,7 +1,7 @@
 error[E0425]: cannot find value `error` in this scope
   --> $DIR/cast-errors-issue-43825.rs:2:17
    |
-LL |     let error = error; //~ ERROR cannot find value `error`
+LL |     let error = error;
    |                 ^^^^^ not found in this scope
 
 error: aborting due to previous error
diff --git a/src/test/ui/cast/cast-ptr-to-int-const.stderr b/src/test/ui/cast/cast-ptr-to-int-const.stderr
index d04595ee4e8..0d4397c2e2d 100644
--- a/src/test/ui/cast/cast-ptr-to-int-const.stderr
+++ b/src/test/ui/cast/cast-ptr-to-int-const.stderr
@@ -1,7 +1,7 @@
 error[E0658]: casting pointers to integers in constants is unstable (see issue #51910)
   --> $DIR/cast-ptr-to-int-const.rs:5:9
    |
-LL |         main as u32 //~ ERROR casting pointers to integers in constants is unstable
+LL |         main as u32
    |         ^^^^^^^^^^^
    |
    = help: add #![feature(const_raw_ptr_to_usize_cast)] to the crate attributes to enable
@@ -9,7 +9,7 @@ LL |         main as u32 //~ ERROR casting pointers to integers in constants is
 error[E0658]: casting pointers to integers in constants is unstable (see issue #51910)
   --> $DIR/cast-ptr-to-int-const.rs:9:9
    |
-LL |         &Y as *const u32 as u32 //~ ERROR is unstable
+LL |         &Y as *const u32 as u32
    |         ^^^^^^^^^^^^^^^^^^^^^^^
    |
    = help: add #![feature(const_raw_ptr_to_usize_cast)] to the crate attributes to enable
diff --git a/src/test/ui/cast/cast-to-unsized-trait-object-suggestion.stderr b/src/test/ui/cast/cast-to-unsized-trait-object-suggestion.stderr
index 37c6ba1b909..bd7a0e1834a 100644
--- a/src/test/ui/cast/cast-to-unsized-trait-object-suggestion.stderr
+++ b/src/test/ui/cast/cast-to-unsized-trait-object-suggestion.stderr
@@ -1,7 +1,7 @@
 error[E0620]: cast to unsized type: `&{integer}` as `dyn std::marker::Send`
   --> $DIR/cast-to-unsized-trait-object-suggestion.rs:2:5
    |
-LL |     &1 as Send; //~ ERROR cast to unsized
+LL |     &1 as Send;
    |     ^^^^^^----
    |           |
    |           help: try casting to a reference instead: `&Send`
@@ -9,7 +9,7 @@ LL |     &1 as Send; //~ ERROR cast to unsized
 error[E0620]: cast to unsized type: `std::boxed::Box<{integer}>` as `dyn std::marker::Send`
   --> $DIR/cast-to-unsized-trait-object-suggestion.rs:3:5
    |
-LL |     Box::new(1) as Send; //~ ERROR cast to unsized
+LL |     Box::new(1) as Send;
    |     ^^^^^^^^^^^^^^^----
    |                    |
    |                    help: try casting to a `Box` instead: `Box<Send>`