//! Compile-fail tests for waddling-errors-macros
//!//! These tests ensure that invalid macro usage results in compile-time errors.
//! Uses trybuild to test that certain code patterns fail to compile with expected error messages.
#[test]fncompile_fail_tests(){let t =trybuild::TestCases::new();
t.compile_fail("tests/compile-fail/*.rs");}#[test]fncompile_pass_tests(){let t =trybuild::TestCases::new();
t.pass("tests/compile-pass/*.rs");}