Satisfy the untiring tidy

This commit is contained in:
Oliver Schneider 2018-06-03 03:39:26 +02:00
parent 78d48867da
commit 13a55e8801
2 changed files with 2 additions and 2 deletions

View file

@ -40,4 +40,4 @@ fn main() {
println!("{:x}", foo::<u32>() as *const usize as usize);
println!("{:x}", foo::<()>());
println!("{:x}", foo::<u32>());
}
}

View file

@ -30,4 +30,4 @@ fn foo<T>(_: T) -> &'static u8 {
fn main() {
foo(0);
}
}