#[test]
fn sealing_compile_fails() {
let t = trybuild::TestCases::new();
t.compile_fail("tests/compile_fail/verified_user_construct.rs");
t.compile_fail("tests/compile_fail/verified_user_field_access.rs");
t.compile_fail("tests/compile_fail/principal_user_construct.rs");
t.compile_fail("tests/compile_fail/principal_anonymous_construct.rs");
t.compile_fail("tests/compile_fail/service_identity_construct.rs");
t.compile_fail("tests/compile_fail/verified_user_no_default.rs");
t.compile_fail("tests/compile_fail/principal_no_default.rs");
t.compile_fail("tests/compile_fail/auth_context_no_default.rs");
t.compile_fail("tests/compile_fail/tenant_construct.rs");
t.compile_fail("tests/compile_fail/tenant_field_access.rs");
t.compile_fail("tests/compile_fail/tenant_no_default.rs");
t.compile_fail("tests/compile_fail/credential_construct.rs");
t.compile_fail("tests/compile_fail/credential_struct_literal.rs");
t.compile_fail("tests/compile_fail/credential_no_default.rs");
t.compile_fail("tests/compile_fail/credential_minter_construct.rs");
t.compile_fail("tests/compile_fail/credential_orphan_from.rs");
t.compile_fail("tests/compile_fail/credential_no_deserialize.rs");
t.compile_fail("tests/compile_fail/dispatch_capture_guard_construct.rs");
t.compile_fail("tests/compile_fail/derive_callee_context_unreachable.rs");
t.compile_fail("tests/compile_fail/tenant_scoped_store_seal.rs");
t.compile_fail("tests/compile_fail/tenanted_construct.rs");
t.compile_fail("tests/compile_fail/tenanted_inner_field.rs");
t.compile_fail("tests/compile_fail/scoped_inner_field.rs");
t.compile_fail("tests/compile_fail/tenant_boundary_construct.rs");
t.compile_fail("tests/compile_fail/tenant_boundary_struct_literal.rs");
}