// Copyright 2018 The Rust Project Developers. See the COPYRIGHT // file at the top-level directory of this distribution and at // http://rust-lang.org/COPYRIGHT. // // Licensed under the Apache License, Version 2.0 or the MIT license // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. // Regression test for an NLL-related ICE (#53568) -- we failed to // resolve inference variables in "custom type-ops". // // compile-pass #![feature(nll)] #![allow(dead_code)] trait Future { type Item; } impl Future for F where F: Fn() -> T { type Item = T; } trait Connect {} struct Connector { handler: H, } impl Connect for Connector where T: 'static, H: Future { } struct Client { connector: C, } fn build(_connector: C) -> Client { unimplemented!() } fn client(handler: H) -> Client where H: Fn() + Copy { let connector = Connector { handler, }; let client = build(connector); client } fn main() { }