1 2 3 4 5
pub(crate) struct Assert<const COND: bool> {} pub(crate) trait IsTrue {} impl IsTrue for Assert<true> {}