]> git.lizzy.rs Git - rust.git/blob - src/test/ui/suggestions/use-placement-resolve.stderr
Override rustc version in ui and mir-opt tests to get stable hashes
[rust.git] / src / test / ui / suggestions / use-placement-resolve.stderr
1 error[E0404]: expected trait, found derive macro `Debug`
2   --> $DIR/use-placement-resolve.rs:11:14
3    |
4 LL | fn foobar<T: Debug>(x: T) {}
5    |              ^^^^^ not a trait
6    |
7 help: consider importing this trait instead
8    |
9 LL | use std::fmt::Debug;
10    |
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0404`.