mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-03 05:27:36 +00:00
9 lines
152 B
Rust
9 lines
152 B
Rust
![]() |
// run-pass
|
||
|
|
||
|
const I: std::iter::Empty<u32> = std::iter::empty();
|
||
|
|
||
|
fn main() {
|
||
|
for i in I {
|
||
|
panic!("magical value creation: {}", i);
|
||
|
}
|
||
|
}
|