rust/src/test/ui/span/issue-33884.stderr

13 lines
470 B
Plaintext
Raw Normal View History

2017-04-21 00:06:39 +00:00
error[E0308]: mismatched types
--> $DIR/issue-33884.rs:16:22
|
16 | stream.write_fmt(format!("message received"))
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected struct `std::fmt::Arguments`, found struct `std::string::String`
|
= note: expected type `std::fmt::Arguments<'_>`
found type `std::string::String`
= note: this error originates in a macro outside of the current crate
error: aborting due to previous error(s)
2017-04-21 00:06:39 +00:00