elvwf

8 commits
Updated 2026-06-13 11:19:44
tests/fail
tests/fail/slice_without_len.rs
use elvwf::Wired;

#[derive(Wired)]
#[wf(header(dsl = "S:8|_:8"))]
struct Bad<'a> {
    #[wf()]
    content: &'a str,
}

fn main() {}