]> git.lizzy.rs Git - rust.git/blob - tests/ui/fmt/ifmt-unknown-trait.rs
Rollup merge of #106664 - chenyukang:yukang/fix-106597-remove-lseek, r=cuviper
[rust.git] / tests / ui / fmt / ifmt-unknown-trait.rs
1 fn main() {
2     format!("{:notimplemented}", "3");
3     //~^ ERROR: unknown format trait `notimplemented`
4 }