rust/tests/ui/span/issue-40157.rs

5 lines
136 B
Rust
Raw Normal View History

2017-03-05 20:51:46 -06:00
fn main () {
{println!("{:?}", match { let foo = vec![1, 2]; foo.get(1) } { x => x });}
2017-11-20 06:13:27 -06:00
//~^ ERROR does not live long enough
2017-03-05 20:51:46 -06:00
}