]> git.lizzy.rs Git - rust.git/blob - tests/ui/macros/issue-100199.stderr
Rollup merge of #106958 - jyn514:labels, r=m-ou-se
[rust.git] / tests / ui / macros / issue-100199.stderr
1 error[E0405]: cannot find trait `MyTrait` in the crate root
2   --> $DIR/issue-100199.rs:1:1
3    |
4 LL | #[issue_100199::struct_with_bound]
5    | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ not found in the crate root
6    |
7    = note: this error originates in the attribute macro `issue_100199::struct_with_bound` (in Nightly builds, run with -Z macro-backtrace for more info)
8 help: consider importing this trait
9    |
10 LL | use traits::MyTrait;
11    |
12
13 error: aborting due to previous error
14
15 For more information about this error, try `rustc --explain E0405`.