rhai/codegen/tests/ui_tests.rs
2020-08-21 23:26:25 -05:00

9 lines
149 B
Rust

#![cfg(test)]
mod ui_tests {
#[test]
fn all() {
let t = trybuild::TestCases::new();
t.compile_fail("ui_tests/*.rs");
}
}