blob: f460fedffb7fb53b137f5ad32a16609f8c07d978 [file] [log] [blame]
// compile-flags: -Zverbose
mod mod1 {
pub fn f<T: std::fmt::Display>(t: T)
{
let x = 20;
let c = || println!("{} {}", t, x);
let c1 : () = c;
//~^ ERROR mismatched types
}
}
fn main() {
mod1::f(5i32);
}