summary refs log tree commit diff
path: root/src/test/compile-fail/extfmt-unsigned-space.rs
blob: 001adb521cc30e8585c5dc4421ec49c34742e1e2 (plain)
1
2
3
4
5
6
// error-pattern:only valid in signed #fmt conversion

fn main() {
    // Can't use a space on unsigned conversions
    fmt!("% u", 10u);
}