blob: 7364c59fd92e35509bf935503f0a6123da07437d [file] [log] [blame]
//@ run-rustfix
#![allow(unused_variables)]
fn foo(foo: &mut usize) {
todo!()
}
fn bar(bar: &usize) {
todo!()
}
fn main() {
foo(Default::default()); //~ ERROR the trait bound `&mut usize: Default` is not satisfied
bar(Default::default()); //~ ERROR the trait bound `&usize: Default` is not satisfied
}