bugfix in quine-mc_cluskey 0.2.1
This commit is contained in:
parent
050d7fd308
commit
0a78a795ab
@ -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"
|
||||
|
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user