os-rust/src/test/ui/issues/issue-46101.stderr

15 lines
513 B
Text
Raw Normal View History

2019-02-25 23:55:25 +00:00
error[E0433]: failed to resolve: partially resolved path in a derive macro
--> $DIR/issue-46101.rs:3:10
|
2019-03-12 19:06:13 +00:00
LL | #[derive(Foo::Anything)]
2019-02-25 23:55:25 +00:00
| ^^^^^^^^^^^^^ partially resolved path in a derive macro
error[E0601]: `main` function not found in crate `issue_46101`
|
= note: consider adding a `main` function to `$DIR/issue-46101.rs`
error: aborting due to 2 previous errors
Some errors have detailed explanations: E0433, E0601.
2019-02-25 23:55:25 +00:00
For more information about an error, try `rustc --explain E0433`.