Centralize box pattern tests in patterns.rs

This commit is contained in:
Dylan MacKenzie 2019-08-23 16:19:23 -07:00
parent 1e991f2eaf
commit 83433cd1f0
3 changed files with 6 additions and 7 deletions

View file

@ -0,0 +1,6 @@
fn main() {
let ref box i = ();
let mut box i = ();
let ref mut box i = ();
}