]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-2642.rs
Rollup merge of #86479 - exphp-forks:float-debug-exponential, r=yaahc
[rust.git] / src / test / ui / issues / issue-2642.rs
1 // run-pass
2 #![allow(dead_code)]
3 // pretty-expanded FIXME #23616
4
5 fn f() {
6    let _x: usize = loop { loop { break; } };
7 }
8
9 pub fn main() {
10 }