We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5131536 commit d70899dCopy full SHA for d70899d
tests/example_flags.rs
@@ -49,7 +49,7 @@ fn test_bit_ops() {
49
let options = SimplificationOptions::default();
50
assert!(!options.contains(SimplificationOptions::KEEP_INPUT_ROOTS));
51
assert!((options & SimplificationOptions::KEEP_INPUT_ROOTS) == 0.into());
52
- let mut options = options | SimplificationOptions::REDUCE_TO_SITE_TOPOLOGY;
+ let options = options | SimplificationOptions::REDUCE_TO_SITE_TOPOLOGY;
53
54
assert!(options.contains(SimplificationOptions::REDUCE_TO_SITE_TOPOLOGY));
55
todo!("need to do more of the op traits");
0 commit comments