]> git.proxmox.com Git - rustc.git/blame - src/test/ui/proc-macro/exports.stderr
New upstream version 1.44.1+dfsg1
[rustc.git] / src / test / ui / proc-macro / exports.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/exports.rs:7:1
3 |
532ac7d7 4LL | pub fn a() {}
ba9703b0 5 | ^^^^^^^^^^
0731742a 6
60c5eb7d 7error: `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
8 --> $DIR/exports.rs:8:1
9 |
532ac7d7 10LL | pub struct B;
0731742a
XL
11 | ^^^^^^^^^^^^^
12
60c5eb7d 13error: `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
14 --> $DIR/exports.rs:9:1
15 |
532ac7d7 16LL | pub enum C {}
ba9703b0 17 | ^^^^^^^^^^
0731742a 18
60c5eb7d 19error: `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
20 --> $DIR/exports.rs:10:1
21 |
532ac7d7 22LL | pub mod d {}
ba9703b0 23 | ^^^^^^^^^
0731742a
XL
24
25error: aborting due to 4 previous errors
26