2021-05-17 22:39:28 -05: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-17 21:18:39 -05:00
|
|
|
LL + use std::fmt::Debug;
|
|
|
|
LL | fn main() {}
|
2021-05-17 22:39:28 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0404`.
|