Skip to content

1.0.63

Choose a tag to compare

@dtolnay dtolnay released this 05 Jun 18:33
· 292 commits to master since this release
1.0.63
b917900
  • 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 of tests/ui expecting them to fail. Previous versions of trybuild would test tests/ui/ok.rs expecting it to fail and again expecting it to pass, which can't both be true.