mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
19 lines
374 B
Rust
19 lines
374 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<dyn T + 'a>>,
|
|
}
|
|
|
|
fn main() { }
|