]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-66308.rs
Update LLVM to fix crash on Emscripten targets
[rust.git] / src / test / ui / issues / issue-66308.rs
1 // build-pass
2 // compile-flags: --crate-type lib
3
4 // Regression test for LLVM crash affecting Emscripten targets
5
6 pub fn foo() {
7     (0..0).rev().next();
8 }