polygraph/
lib.rs

1pub use polygraph_macro::schema;
2
3pub mod example;
4
5#[test]
6fn ui() {
7    let t = trybuild::TestCases::new();
8    t.compile_fail("tests/ui/*.rs");
9}