Fix bug in chained boolean typecheck (#490)

This commit is contained in:
JT
2021-12-14 16:19:16 +11:00
committed by GitHub
parent 673fe2b56a
commit 04a9c8f3fd
3 changed files with 6 additions and 2 deletions

View File

@ -1232,3 +1232,8 @@ fn command_filter_reject_3() -> TestResult {
]"#,
)
}
#[test]
fn chained_operator_typecheck() -> TestResult {
run_test("1 != 2 && 3 != 4 && 5 != 6", "true")
}