blob: e9b8a9caa484a6be3c8e9f0ca772725ded05f9bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// run-rustfix
#![allow(unused_variables)]
fn foo(foo: &mut usize) {
todo!()
}
fn bar(bar: &usize) {
todo!()
}
fn main() {
foo(&mut Default::default()); //~ the trait bound `&mut usize: Default` is not satisfied
bar(&Default::default()); //~ the trait bound `&usize: Default` is not satisfied
}
|