]> git.proxmox.com Git - rustc.git/blob - src/test/ui/issues/issue-32805.rs
New upstream version 1.60.0+dfsg1
[rustc.git] / src / test / ui / issues / issue-32805.rs
1 // run-pass
2 fn const_mir() -> f32 { 9007199791611905.0 }
3
4 fn main() {
5 let original = "9007199791611905.0"; // (1<<53)+(1<<29)+1
6 let expected = "9007200000000000";
7
8 assert_eq!(const_mir().to_string(), expected);
9 assert_eq!(original.parse::<f32>().unwrap().to_string(), expected);
10 }