mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
24 lines
440 B
Rust
24 lines
440 B
Rust
// Check that we if we get ahold of an object unsafe trait
|
|
// object with auto traits and lifetimes, we can downcast it
|
|
//
|
|
// check-pass
|
|
|
|
#![feature(object_safe_for_dispatch)]
|
|
|
|
trait Trait: Sized {}
|
|
|
|
fn downcast_auto(t: &(dyn Trait + Send)) -> &dyn Trait {
|
|
t
|
|
}
|
|
|
|
fn downcast_lifetime<'a, 'b, 't>(t: &'a (dyn Trait + 't))
|
|
-> &'b (dyn Trait + 't)
|
|
where
|
|
'a: 'b,
|
|
't: 'a + 'b,
|
|
{
|
|
t
|
|
}
|
|
|
|
fn main() {}
|