summaryrefslogtreecommitdiffstats
path: root/tests/ui/suggestions/use-placement-resolve.stderr
blob: 77724e7e2a479dabb9b8df7de754520a0f0e08e3 (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`.