Rollup merge of #22901 - thepowersgang:patch-1, r=eddyb

A misplaced uint->u32 instead of usize in fmt::Pointer. Added a basic test.
This commit is contained in:
Manish Goregaokar 2015-03-01 01:19:05 +05:30
commit 87391ed52a
2 changed files with 8 additions and 1 deletions

View file

@ -137,6 +137,13 @@ pub fn main() {
t!(format!("{:+10.3e}", 1.2345e6f64), " +1.234e6");
t!(format!("{:+10.3e}", -1.2345e6f64), " -1.234e6");
// Test that pointers don't get truncated.
{
let val = usize::MAX;
let exp = format!("{:#x}", val);
t!(format!("{:p}", val as *const isize), exp);
}
// Escaping
t!(format!("{{"), "{");
t!(format!("}}"), "}");