mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-25 00:03:43 +00:00
21 lines
344 B
Rust
21 lines
344 B
Rust
// revisions: current next
|
|
//[next] compile-flags: -Ztrait-solver=next
|
|
//[next] known-bug: trait-system-refactor-initiative#71
|
|
//[current] check-pass
|
|
|
|
trait Foo {}
|
|
fn needs_foo<T>(_: T)
|
|
where
|
|
Wrap<T>: Foo,
|
|
{
|
|
}
|
|
|
|
struct Wrap<T>(T);
|
|
impl<T> Foo for Wrap<T> where T: Fn(i32) {}
|
|
|
|
fn main() {
|
|
needs_foo(|x| {
|
|
x.to_string();
|
|
});
|
|
}
|