aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_syntax/test_data/parser/inline/ok/0112_bind_pat.rs
blob: 5a93469af59a8bb4a5e3b663b6fa2bc7f0668ce4 (plain)
1
2
3
4
5
6
7
8
9
fn main() {
    let a = ();
    let mut b = ();
    let ref c = ();
    let ref mut d = ();
    let e @ _ = ();
    let ref mut f @ g @ _ = ();
    let box i = Box::new(1i32);
}