We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 645b94c commit 31a4eaeCopy full SHA for 31a4eae
tests/source/mut_ref.rs
@@ -0,0 +1,10 @@
1
+#![feature(mut_ref)]
2
+fn mut_ref() {
3
+ if let Some(mut /*a*/ ref /*def*/ mut /*abc*/ state)= /*abc*/foo{
4
+ println!(
5
+"asdfasdfasdf"); }
6
+
7
+if let Some(mut /*a*/ ref /*def*/ /*mut*/ state)= /*abc*/foo{
8
9
10
+}
tests/target/mut_ref.rs
+ if let Some(mut /*a*/ ref /*def*/ mut /*abc*/ state) = /*abc*/ foo {
+ println!("asdfasdfasdf");
+ }
+ if let Some(mut /*a*/ ref /*def*/ /*mut*/ state) = /*abc*/ foo {
0 commit comments