mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
48 lines
681 B
Rust
48 lines
681 B
Rust
// Regression test for an NLL-related ICE (#53568) -- we failed to
|
|
// resolve inference variables in "custom type-ops".
|
|
//
|
|
// check-pass
|
|
|
|
trait Future {
|
|
type Item;
|
|
}
|
|
|
|
impl<F, T> Future for F
|
|
where F: Fn() -> T
|
|
{
|
|
type Item = T;
|
|
}
|
|
|
|
trait Connect {}
|
|
|
|
struct Connector<H> {
|
|
handler: H,
|
|
}
|
|
|
|
impl<H, T> Connect for Connector<H>
|
|
where
|
|
T: 'static,
|
|
H: Future<Item = T>
|
|
{
|
|
}
|
|
|
|
struct Client<C> {
|
|
connector: C,
|
|
}
|
|
|
|
fn build<C>(_connector: C) -> Client<C> {
|
|
unimplemented!()
|
|
}
|
|
|
|
fn client<H>(handler: H) -> Client<impl Connect>
|
|
where H: Fn() + Copy
|
|
{
|
|
let connector = Connector {
|
|
handler,
|
|
};
|
|
let client = build(connector);
|
|
client
|
|
}
|
|
|
|
fn main() { }
|