ben blum
ben blum
Didn't encounter personally, just spotted here - http://www.reddit.com/r/Netrunner/comments/2rnuip/octgn_industrial_genomics_napd/
``` 10 #[mutate] 11 pub fn add_five(i: usize) -> usize { 12 i + 4 + 1 13 } ``` fails to cargo test with: ``` error: custom attribute panicked...
I noticed a few comments along the lines of trying to avoid mutating into infinite loops. While of course this is good to avoid too many spurious too-weak mutations, it's...
``` #[mutate] pub fn if_let() -> bool { let x = Some(true); if let Some(b) = x { b } else { false } } ``` ``` error: expected expression,...
``` pub fn count_to_five() -> usize { let xs = vec![true, false, true, false, true]; let mut i = 0; for _x in xs { i += 1; } i...
Link to bug replay: https://jinteki.net/bug-report/549a9087-06ef-47b5-945a-698fee7a1adf?b=0 Description: I believe this is similar to other multiple-overlapping-prompt issues, like #6727 and #6718, but this time it manifested in the game log in this...