rustc/tests/ui/fmt/ifmt-unknown-trait.rs
2023-08-02 10:33:26 +02:00

5 lines
107 B
Rust

fn main() {
format!("{:notimplemented}", "3");
//~^ ERROR: unknown format trait `notimplemented`
}