]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-32950.stderr
Rollup merge of #58812 - jonhoo:floor_v_trunc, r=alexcrichton
[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)
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)
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`.