2018-09-04 05:05:53 -05:00
|
|
|
// run-pass
|
2018-09-25 16:51:35 -05:00
|
|
|
#![allow(unused_imports)]
|
2014-09-07 00:31:41 -05:00
|
|
|
// This test verifies that casting from the same lifetime on a value
|
|
|
|
// to the same lifetime on a trait succeeds. See issue #10766.
|
|
|
|
|
2015-03-22 15:13:15 -05:00
|
|
|
// pretty-expanded FIXME #23616
|
|
|
|
|
2014-09-07 00:31:41 -05:00
|
|
|
#![allow(dead_code)]
|
2015-02-12 09:29:52 -06:00
|
|
|
|
|
|
|
use std::marker;
|
|
|
|
|
2014-09-07 00:31:41 -05:00
|
|
|
fn main() {
|
2015-02-18 17:58:07 -06:00
|
|
|
trait T { fn foo(&self) {} }
|
2014-09-07 00:31:41 -05:00
|
|
|
|
|
|
|
fn f<'a, V: T>(v: &'a V) -> &'a T {
|
|
|
|
v as &'a T
|
|
|
|
}
|
|
|
|
}
|