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
//! Compile-fail fixture (ADR-041 guard 3, the KEYSTONE): a triggerless
//! `#[dread]` must reject. A marked-unknown with no stated trigger is the
//! contentless "this seems off" graffiti the marker exists to prevent — the
//! `trigger` field is REQUIRED, not optional. Anchored to `MarkerArgs::validate`.

use antigen_macros::dread;

#[dread]
fn no_trigger() {}

fn main() {}