#[test]
fn rule_q3_and_rule_p_are_enforced_by_the_type_system() {
let t = trybuild::TestCases::new();
t.compile_fail("tests/compile_fail/signed_window_as_operand.rs");
t.compile_fail("tests/compile_fail/signed_window_into_delta.rs");
t.compile_fail("tests/compile_fail/signed_window_arithmetic.rs");
t.compile_fail("tests/compile_fail/window_into_instant.rs");
t.compile_fail("tests/compile_fail/stated_is_not_an_instant.rs");
t.compile_fail("tests/compile_fail/cross_profile_arithmetic.rs");
t.compile_fail("tests/compile_fail/cross_profile_comparison.rs");
}