1 2 3 4 5 6 7 8
#![feature(rustc_attrs)] #[rustc_variance] struct Foo<'a, T> { //~ ERROR [+, o] t: &'a mut T, } fn main() {}