mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 09:14:20 +00:00
21 lines
250 B
Rust
21 lines
250 B
Rust
// check-pass
|
|
|
|
pub trait Trait<'a> {
|
|
type Item;
|
|
}
|
|
|
|
impl<'a> Trait<'a> for () {
|
|
type Item = ();
|
|
}
|
|
|
|
pub fn foo<T, F>(_: T, _: F)
|
|
where
|
|
T: for<'a> Trait<'a>,
|
|
F: for<'a> FnMut(<T as Trait<'a>>::Item),
|
|
{
|
|
}
|
|
|
|
fn main() {
|
|
foo((), drop)
|
|
}
|