blob: 9da9e8e27021df40b0aa88bd6a88ceb6d849a26c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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
|
LL | use std::fmt::Debug;
|
error: aborting due to previous error
For more information about this error, try `rustc --explain E0404`.
|