2025-08-20 14:02:57 -04:00
|
|
|
// https://github.com/rust-lang/rust/issues/66308
|
2024-02-16 20:02:50 +00:00
|
|
|
//@ build-pass
|
|
|
|
|
//@ compile-flags: --crate-type lib -C opt-level=0
|
2020-01-07 07:03:45 -08:00
|
|
|
|
|
|
|
|
// Regression test for LLVM crash affecting Emscripten targets
|
|
|
|
|
|
|
|
|
|
pub fn foo() {
|
|
|
|
|
(0..0).rev().next();
|
|
|
|
|
}
|