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(){// okmatch(1,0){(0,0...1) |
(1,0...0) => Ok(()),
_ => Err(())}.unwrap();// errormatch(1,0){(0,0...1) | // <-- endpoint of first range must be greater than that of the second one(1,0...0) => Ok(()),(_, _) => Err(())// <-- must be a tuple of _}.unwrap();}
gets the second match wrong somehow, under very specific circumstances. Minified from user "bellows" in #rust-beginners.
The text was updated successfully, but these errors were encountered:
This may be the same bug as #18060. This code
gets the second match wrong somehow, under very specific circumstances. Minified from user "bellows" in #rust-beginners.
The text was updated successfully, but these errors were encountered: