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