type-variance 0.1.0

Marker traits for subtype variance
Documentation
mod common;

use common::*;

fn invariant_fail_covariant<'a>() {
    let _in: In<Lifetime<'a>> = In(
        Invariant::<Lifetime<'static>>::default(),
    );
}

fn main() {}