rust/tests/ui/consts/promote_evaluation_unused_result.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
113 B
Rust
Raw Normal View History

//@ build-pass (FIXME(62277): could be check-pass?)
2019-02-15 02:52:17 -06:00
fn main() {
let _: &'static usize = &(loop {}, 1).1;
}