blob: 18ff33a99ce3f49007d650546f7ace8ee0fb44d8 [file] [log] [blame]
Jules Bertholete9315952024-03-27 16:35:40 -04001#![feature(mut_ref)]
2fn mut_ref() {
3 if let Some(mut /*a*/ ref /*def*/ mut /*abc*/ state)= /*abc*/foo{
4 println!(
5"asdfasdfasdf"); }
6
7if let Some(mut /*a*/ ref /*def*/ /*mut*/ state)= /*abc*/foo{
8 println!(
9"asdfasdfasdf"); }
10}