mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
12 lines
218 B
Rust
12 lines
218 B
Rust
// check-pass
|
|
pub trait Handler {
|
|
fn handle(&self, _: &mut String);
|
|
}
|
|
|
|
impl<F> Handler for F where F: for<'a, 'b> Fn(&'a mut String) {
|
|
fn handle(&self, st: &mut String) {
|
|
self(st)
|
|
}
|
|
}
|
|
|
|
fn main() {}
|