rust/tests/ui/suggestions/use-placement-resolve.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
369 B
Plaintext
Raw Normal View History

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;
|
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0404`.