You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fnmain(){let x = &4i;match x {// wanted to type `e @ &1 ... &4`
e @ &1 ... 4 => println!("Got a small value: {}", e),&val => println!("Got a value: {}", val),}}
works but
fnmain(){let x = &4i;match x {// wanted to type `e @ &1 ... &4`
e @ &(1 ... 4) => println!("Got a small value: {}", e),&val => println!("Got a value: {}", val),}}
is quite surprising. Presumably the &( is expecting a tuple pattern, should consider investigating and seeing if patterns can be parenthesized in general.
The fact that
works but
is quite surprising. Presumably the
&(
is expecting a tuple pattern, should consider investigating and seeing if patterns can be parenthesized in general.cc #11144
The text was updated successfully, but these errors were encountered: