mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
16 lines
314 B
Rust
16 lines
314 B
Rust
// 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
|
|
}
|