]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/non-fmt-panic.stderr
Rollup merge of #98640 - cuviper:stable-rust-analyzer, r=Mark-Simulacrum
[rust.git] / src / test / ui / non-fmt-panic.stderr
index 3305e5cc9068d81d726ce34a59b6fb2561a6f5bb..4da97ed5d60eb481bb12bbb0e075e77b5b796a7f 100644 (file)
@@ -296,7 +296,7 @@ help: remove the `format!(..)` macro call
    |
 LL -     panic!(format!("{}", 1));
 LL +     panic!("{}", 1);
-   | 
+   |
 
 warning: panic message is not a string literal
   --> $DIR/non-fmt-panic.rs:50:18
@@ -311,7 +311,7 @@ help: remove the `format!(..)` macro call
    |
 LL -     unreachable!(format!("{}", 1));
 LL +     unreachable!("{}", 1);
-   | 
+   |
 
 warning: panic message is not a string literal
   --> $DIR/non-fmt-panic.rs:51:20
@@ -326,7 +326,7 @@ help: remove the `format!(..)` macro call
    |
 LL -     assert!(false, format!("{}", 1));
 LL +     assert!(false, "{}", 1);
-   | 
+   |
 
 warning: panic message is not a string literal
   --> $DIR/non-fmt-panic.rs:52:26
@@ -341,7 +341,7 @@ help: remove the `format!(..)` macro call
    |
 LL -     debug_assert!(false, format!("{}", 1));
 LL +     debug_assert!(false, "{}", 1);
-   | 
+   |
 
 warning: panic message is not a string literal
   --> $DIR/non-fmt-panic.rs:54:12