#[cfg_attr(miri, ignore)] #[test]
fn compile_tests() {
let t = trybuild::TestCases::new();
t.pass("tests/compile_pass/*.rs");
t.pass("macros/src/dynify_tests/*.rs");
if rustversion::cfg!(stable(1.80)) {
t.compile_fail("tests/compile_fail/*.rs");
} else {
t.compile_fail("tests/compile_fail/dynify_*.rs");
}
}