rust/tests/ui/macros/println-percent-prefix-num-issue-125002.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
144 B
Rust
Raw Normal View History

fn main() {
println!("%100000", 1);
//~^ ERROR argument never used
println!("% 65536", 1);
//~^ ERROR argument never used
}