10 lines
162 B
Rust
10 lines
162 B
Rust
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() { }
|