rust/tests/ui/pattern/pattern-bad-ref-box-order.f...

15 lines
238 B
Rust

//@ run-rustfix
#![feature(box_patterns)]
#![allow(dead_code)]
fn foo(f: Option<Box<i32>>) {
match f {
Some(box ref _i) => {},
//~^ ERROR switch the order of `ref` and `box`
None => {}
}
}
fn main() { }