1.0.63
-
Allow later globs to override pass/fail status of earlier globs (#174)
t.compile_fail("tests/ui/*.rs"); t.pass("tests/ui/ok.rs");
This will test
tests/ui/ok.rs
expecting it to pass, and all the rest of the contents oftests/ui
expecting them to fail. Previous versions of trybuild would testtests/ui/ok.rs
expecting it to fail and again expecting it to pass, which can't both be true.