rust/src/test/ui/issues/issue-5500-1.rs
2019-11-04 16:03:46 +01:00

16 lines
334 B
Rust

// MIR doesn't generate an error because the assignment isn't reachable. This
// is OK because the test is here to check that the compiler doesn't ICE (cf.
// #5500).
// check-pass
struct TrieMapIterator<'a> {
node: &'a usize
}
fn main() {
let a = 5;
let _iter = TrieMapIterator{node: &a};
_iter.node = &panic!()
}