blob: 848629a67001af663f600d7fee395a802de160d2 [file] [log] [blame]
//@ run-rustfix
use std::fmt::Display;
struct S;
impl S {
fn call(&self, _: impl Display) {}
}
fn main() {
S.call(|| "hello"); //~ ERROR [E0277]
}