blob: 1ed47d8f49ead28adf602da2173062bbf50b4744 [file] [log] [blame]
use std::fmt::Debug;
fn foo(x: impl Debug, y: impl Debug) -> String {
let mut a = x;
a = y; //~ ERROR mismatched
format!("{:?}", a)
}
fn main() { }