]> git.lizzy.rs Git - rust.git/blob - tests/ui/macros/issue-86865.stderr
Rollup merge of #106854 - steffahn:drop_linear_arc_rebased, r=Mark-Simulacrum
[rust.git] / tests / ui / macros / issue-86865.stderr
1 error: format argument must be a string literal
2   --> $DIR/issue-86865.rs:4:14
3    |
4 LL |     println!(b"foo");
5    |              -^^^^^
6    |              |
7    |              help: consider removing the leading `b`
8
9 error: format argument must be a string literal
10   --> $DIR/issue-86865.rs:8:15
11    |
12 LL |     write!(s, b"foo{}", "bar");
13    |               -^^^^^^^
14    |               |
15    |               help: consider removing the leading `b`
16
17 error: aborting due to 2 previous errors
18