// Copyright 2015 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. fn main() { f1(|_: (), _: ()| {}); //~ ERROR type mismatch f2(|_: (), _: ()| {}); //~ ERROR type mismatch f3(|_: (), _: ()| {}); //~ ERROR type mismatch f4(|_: (), _: ()| {}); //~ ERROR type mismatch f5(|_: (), _: ()| {}); //~ ERROR type mismatch g1(|_: (), _: ()| {}); //~ ERROR type mismatch g2(|_: (), _: ()| {}); //~ ERROR type mismatch g3(|_: (), _: ()| {}); //~ ERROR type mismatch g4(|_: (), _: ()| {}); //~ ERROR type mismatch h1(|_: (), _: (), _: (), _: ()| {}); //~ ERROR type mismatch h2(|_: (), _: (), _: (), _: ()| {}); //~ ERROR type mismatch } // Basic fn f1(_: F) where F: Fn(&(), &()) {} fn f2(_: F) where F: for<'a> Fn(&'a (), &()) {} fn f3<'a, F>(_: F) where F: Fn(&'a (), &()) {} fn f4(_: F) where F: for<'r> Fn(&(), &'r ()) {} fn f5(_: F) where F: for<'r> Fn(&'r (), &'r ()) {} // Nested fn g1(_: F) where F: Fn(&(), Box) {} fn g2(_: F) where F: Fn(&(), fn(&())) {} fn g3(_: F) where F: for<'s> Fn(&'s (), Box) {} fn g4(_: F) where F: Fn(&(), for<'r> fn(&'r ())) {} // Mixed fn h1(_: F) where F: Fn(&(), Box, &(), fn(&(), &())) {} fn h2(_: F) where F: for<'t0> Fn(&(), Box, &'t0 (), fn(&(), &())) {}