rust/src/test/ui/variance/variance-trait-object-bound.rs
2018-12-25 21:08:33 -07:00

19 lines
370 B
Rust

// Checks that regions which appear in a trait object type are
// observed by the variance inference algorithm (and hence
// `TOption` is contavariant w/r/t `'a` and not bivariant).
//
// Issue #18262.
#![feature(rustc_attrs)]
use std::mem;
trait T { fn foo(&self); }
#[rustc_variance]
struct TOption<'a> { //~ ERROR [-]
v: Option<Box<T + 'a>>,
}
fn main() { }