rust/tests/data/parser/inline/0035_ref_pat.rs

5 lines
52 B
Rust
Raw Normal View History

fn main() {
let &a = ();
let &mut b = ();
}