summaryrefslogtreecommitdiffstats
path: root/tests/ui/fmt/closing-brace-as-fill.stderr
blob: aa1e5aff6525f8b2da5bdafa5b86d710fb72cb2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
error: invalid format string: expected `'}'` but string was terminated
  --> $DIR/closing-brace-as-fill.rs:6:35
   |
LL |     println!("Hello, world! {0:}<3", 2);
   |                                -  ^ expected `'}'` in format string
   |                                |
   |                                this is not interpreted as a formatting closing brace
   |
   = note: the character `'}'` is interpreted as a fill character because of the `:` that precedes it

error: aborting due to previous error