//! Provides an error message testing framework using https://github.com/dtolnay/trybuild //! See `dynomite/trybuild-tests/readme.md` for instructions on how to add more tests. #[test] fn try_build_tests() { let t = trybuild::TestCases::new(); t.compile_fail("trybuild-tests/fail/*.rs"); t.pass("trybuild-tests/pass/*.rs"); }