]> git.proxmox.com Git - rustc.git/blame - src/test/ui/proc-macro/pub-at-crate-root.stderr
New upstream version 1.41.1+dfsg1
[rustc.git] / src / test / ui / proc-macro / pub-at-crate-root.stderr
CommitLineData
60c5eb7d 1error: `proc-macro` crate types currently cannot export any items other than functions tagged with `#[proc_macro]`, `#[proc_macro_derive]`, or `#[proc_macro_attribute]`
0731742a
XL
2 --> $DIR/pub-at-crate-root.rs:8:1
3 |
532ac7d7 4LL | / pub mod a {
0731742a
XL
5LL | | use proc_macro::TokenStream;
6LL | |
7LL | | #[proc_macro_derive(B)]
8... |
9LL | | }
10LL | | }
11 | |_^
12
13error: functions tagged with `#[proc_macro_derive]` must currently reside in the root of the crate
14 --> $DIR/pub-at-crate-root.rs:12:5
15 |
16LL | / pub fn bar(a: TokenStream) -> TokenStream {
532ac7d7 17LL | |
0731742a
XL
18LL | | a
19LL | | }
20 | |_____^
21
22error: functions tagged with `#[proc_macro_derive]` must be `pub`
23 --> $DIR/pub-at-crate-root.rs:19:1
24 |
25LL | / fn bar(a: proc_macro::TokenStream) -> proc_macro::TokenStream {
532ac7d7 26LL | |
0731742a
XL
27LL | | a
28LL | | }
29 | |_^
30
31error: aborting due to 3 previous errors
32