aboutsummaryrefslogtreecommitdiff
path: root/crates/syntax/test_data/parser/inline/ok/0143_box_pat.rs
blob: 9d458aa1e6bb8178a79d1765c2bec1dced26f29e (plain)
1
2
3
4
5
fn main() {
    let box i = ();
    let box Outer { box i, j: box Inner(box &x) } = ();
    let box ref mut i = ();
}