antigen-macros 0.3.0

Procedural macros for the antigen crate. Not for direct use; use antigen instead.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! W6a fixture: `#[antigen_tolerance(X, rationale = "..", until = "")]`
//! must reject. Per ADR-011 §Mechanics §2 (aristotle reciprocal Phase 1-8):
//! empty `until` indicates user error.

use antigen_macros::antigen_tolerance;

pub struct PolarityInvertedClassMeet;

#[antigen_tolerance(
    PolarityInvertedClassMeet,
    rationale = "Test fixture deliberately constructs the failure pattern.",
    until = ""
)]
fn deliberately_constructed_failure() {}

fn main() {}