]> git.lizzy.rs Git - rust.git/blob - tests/ui/fmt/ifmt-unknown-trait.rs
Rollup merge of #106715 - BoxyUwU:new_solver_triagebot, r=lcnr
[rust.git] / tests / ui / fmt / ifmt-unknown-trait.rs
1 fn main() {
2     format!("{:notimplemented}", "3");
3     //~^ ERROR: unknown format trait `notimplemented`
4 }