about summary refs log tree commit diff
path: root/src/test/ui/format-hygiene.rs
blob: 6bf5ae8beaddb91a9984df5187eab1198443f79e (plain)
1
2
3
4
5
6
7
8
// run-pass

#![allow(non_upper_case_globals)]
pub const arg0: u8 = 1;

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