os-rust/src/test/ui/macros/must-use-in-macro-55516.stderr

13 lines
457 B
Text
Raw Normal View History

2018-11-01 03:32:45 +00:00
warning: unused `std::result::Result` that must be used
2018-12-25 08:56:47 -07:00
--> $DIR/must-use-in-macro-55516.rs:9:5
2018-11-01 03:32:45 +00:00
|
2019-03-09 15:03:44 +03:00
LL | write!(&mut example, "{}", 42);
2018-11-01 03:32:45 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: `-W unused-must-use` implied by `-W unused`
= note: this `Result` may be an `Err` variant, which should be handled
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
2018-11-01 03:32:45 +00:00
warning: 1 warning emitted