summaryrefslogtreecommitdiffstats
path: root/tests/ui/error-codes/E0208.rs
blob: c67d42889d69b3c7bb32b2128bdcf777146309a0 (plain)
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() {}