Files
CreepySkeleton c146480470 Get rid of syn(full), save ~30sec of compile time
rustversion depends on syn(full) so it had to be ditched,
but it worth it
2020-02-29 18:37:59 +03:00

9 lines
156 B
Rust

extern crate trybuild;
#[cfg_attr(skip_ui_tests, ignore)]
#[test]
fn ui() {
let t = trybuild::TestCases::new();
t.compile_fail("tests/ui/*.rs");
}