mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
22 lines
298 B
Rust
22 lines
298 B
Rust
// check-pass
|
|
|
|
trait Bar {
|
|
type Type;
|
|
}
|
|
struct Foo<'a>(&'a ());
|
|
impl<'a> Bar for Foo<'a> {
|
|
type Type = ();
|
|
}
|
|
|
|
fn func<'a>(_: <Foo<'a> as Bar>::Type) {}
|
|
fn assert_is_func<A>(_: fn(A)) {}
|
|
|
|
fn test()
|
|
where
|
|
for<'a> <Foo<'a> as Bar>::Type: Sized,
|
|
{
|
|
assert_is_func(func);
|
|
}
|
|
|
|
fn main() {}
|