bugfix in quine-mc_cluskey 0.2.1

This commit is contained in:
Oliver Schneider 2016-03-24 09:36:46 +01:00
parent 050d7fd308
commit 0a78a795ab
2 changed files with 9 additions and 1 deletions

View file

@ -23,7 +23,7 @@ regex_macros = { version = "0.1.33", optional = true }
semver = "0.2.1"
toml = "0.1"
unicode-normalization = "0.1"
quine-mc_cluskey = "0.2"
quine-mc_cluskey = "0.2.1"
[dev-dependencies]
compiletest_rs = "0.1.0"

View file

@ -21,4 +21,12 @@ fn main() {
let _ = !!a; //~ ERROR this boolean expression can be simplified
//|~ HELP for further information visit
//|~ SUGGESTION let _ = a;
let _ = false && a; //~ ERROR this boolean expression can be simplified
//|~ HELP for further information visit
//|~ SUGGESTION let _ = false;
let _ = false || a; //~ ERROR this boolean expression can be simplified
//|~ HELP for further information visit
//|~ SUGGESTION let _ = a;
}