rust/src/test/ui/consts/promote_evaluation_unused_result.rs

7 lines
76 B
Rust
Raw Normal View History

2019-02-15 08:52:17 +00:00
//compile-pass
fn main() {
let _: &'static usize = &(loop {}, 1).1;
}