summaryrefslogtreecommitdiffstats
path: root/tests/ui/variance/variance-trait-object-bound.rs
blob: ec3c973bc76395eba6e90c8250503e3707f4c19f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// 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<dyn T + 'a>>,
}

fn main() { }