]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-32950.stderr
Rollup merge of #57106 - matthiaskrgr:trim_must_use, r=sfackler
[rust.git] / src / test / ui / issues / issue-32950.stderr
1 error: `derive` cannot be used on items with type macros
2   --> $DIR/issue-32950.rs:5:5
3    |
4 LL |     concat_idents!(Foo, Bar) //~ ERROR `derive` cannot be used on items with type macros
5    |     ^^^^^^^^^^^^^^^^^^^^^^^^
6
7 error[E0412]: cannot find type `FooBar` in this scope
8   --> $DIR/issue-32950.rs:5:5
9    |
10 LL |     concat_idents!(Foo, Bar) //~ ERROR `derive` cannot be used on items with type macros
11    |     ^^^^^^^^^^^^^^^^^^^^^^^^ not found in this scope
12
13 error: aborting due to 2 previous errors
14
15 For more information about this error, try `rustc --explain E0412`.