summary refs log tree commit diff
path: root/src/test/run-pass/format-hygiene.rs
blob: 4a797d19bad2e53be2aa5d206a5ae1e7de5cfb5c (plain)
1
2
3
4
5
6
#![allow(non_upper_case_globals)]
pub const arg0: u8 = 1;

pub fn main() {
    format!("{}", 1);
}