mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
19 lines
505 B
Rust
19 lines
505 B
Rust
use std::cell::RefCell;
|
|
|
|
pub struct MessageListeners<'a> {
|
|
listeners: RefCell<Vec<Box<dyn FnMut(()) + 'a>>>,
|
|
}
|
|
|
|
pub trait MessageListenersInterface {
|
|
fn listeners<'c>(&'c self) -> &'c MessageListeners<'c>;
|
|
}
|
|
|
|
impl<'a> MessageListenersInterface for MessageListeners<'a> {
|
|
fn listeners<'b>(&'b self) -> &'a MessageListeners<'b> {
|
|
//~^ ERROR cannot infer an appropriate lifetime for lifetime parameter 'b in generic type due to conflicting requirements
|
|
self
|
|
}
|
|
}
|
|
|
|
fn main() {}
|