about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--tests/ui/cast.stderr6
1 files changed, 0 insertions, 6 deletions
diff --git a/tests/ui/cast.stderr b/tests/ui/cast.stderr
index aaa6b4183e9..458b2736866 100644
--- a/tests/ui/cast.stderr
+++ b/tests/ui/cast.stderr
@@ -481,12 +481,6 @@ LL |         (x * x) as u32;
    |         ^^^^^^^^^^^^^^
 
 error: casting `i32` to `u32` may lose the sign of the value
-  --> tests/ui/cast.rs:373:9
-   |
-LL |         x.pow(2) as u32;
-   |         ^^^^^^^^^^^^^^^
-
-error: casting `i32` to `u32` may lose the sign of the value
   --> tests/ui/cast.rs:377:32
    |
 LL |     let _a = |x: i32| -> u32 { (x * x * x * x) as u32 };