blob: a4c2d82b4837f7d19353fdbc2468fe639a5ee09c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
//@ check-fail
#![feature(auto_traits)]
auto trait AutoTrait {}
trait Trait {
fn static_lifetime_bound(&self) where Self: 'static {}
fn arg_lifetime_bound<'a>(&self, _arg: &'a ()) where Self: 'a {}
fn autotrait_bound(&self) where Self: AutoTrait {}
}
impl Trait for () {}
fn main() {
let trait_object = &() as &dyn Trait;
trait_object.static_lifetime_bound();
trait_object.arg_lifetime_bound(&());
trait_object.autotrait_bound(); //~ ERROR: the trait bound `dyn Trait: AutoTrait` is not satisfied
}
|