2021-05-17 20:39:28 -07:00
|
|
|
error[E0404]: expected trait, found derive macro `Debug`
|
|
|
|
--> $DIR/use-placement-resolve.rs:11:14
|
|
|
|
|
|
|
|
|
LL | fn foobar<T: Debug>(x: T) {}
|
|
|
|
| ^^^^^ not a trait
|
|
|
|
|
|
|
|
|
help: consider importing this trait instead
|
|
|
|
|
|
2023-03-18 02:18:39 +00:00
|
|
|
LL + use std::fmt::Debug;
|
2021-05-17 20:39:28 -07:00
|
|
|
|
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0404`.
|