23 lines
494 B
Rust
23 lines
494 B
Rust
//@ run-pass
|
|
//@ pretty-expanded FIXME #23616
|
|
|
|
struct Cursor<'a>(::std::marker::PhantomData<&'a ()>);
|
|
|
|
trait CursorNavigator {
|
|
fn init_cursor<'a, 'b:'a>(&'a self, cursor: &mut Cursor<'b>) -> bool;
|
|
}
|
|
|
|
struct SimpleNavigator;
|
|
|
|
impl CursorNavigator for SimpleNavigator {
|
|
fn init_cursor<'a, 'b: 'a>(&'a self, _cursor: &mut Cursor<'b>) -> bool {
|
|
false
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
let mut c = Cursor(::std::marker::PhantomData);
|
|
let n = SimpleNavigator;
|
|
n.init_cursor(&mut c);
|
|
}
|