]> git.lizzy.rs Git - rust.git/blob - src/test/ui/fmt/ifmt-unknown-trait.rs
Auto merge of #79045 - oli-obk:dont_rely_on_alloc_happening_for_soundness, r=TimDiekmann
[rust.git] / src / test / ui / fmt / ifmt-unknown-trait.rs
1 fn main() {
2     format!("{:notimplemented}", "3");
3     //~^ ERROR: unknown format trait `notimplemented`
4 }