about summary refs log tree commit diff
path: root/tests/ui/suggestions/suggest-adding-reference-to-trait-assoc-item.rs
blob: 7364c59fd92e35509bf935503f0a6123da07437d (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(Default::default()); //~ ERROR the trait bound `&mut usize: Default` is not satisfied
    bar(Default::default()); //~ ERROR the trait bound `&usize: Default` is not satisfied
}