blob: e9129bbd71328db23b589cca169ec71d5a91d4ad [file] [log] [blame]
use std::fmt::Debug;
fn foo(x: impl Debug) -> String {
x //~ ERROR mismatched types
}
fn main() { }