indoc 2.0.7

Indented document literals
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
error: argument never used
 --> tests/ui/printdoc-extra-arg.rs:4:19
  |
4 |     printdoc!("", 0);
  |               --  ^ argument never used
  |               |
  |               formatting specifier missing
  |
help: format specifiers use curly braces, consider adding a format specifier
  |
4 |     printdoc!("{}", 0);
  |                ++