blob: 6cf5c63d2da4b56025d2513ab2e5fe9cf329280e [file] [log] [blame]
error: `proc-macro` crate types cannot export any items other than functions tagged with `#[proc_macro_derive]` currently
--> $DIR/exports.rs:7:1
|
LL | pub fn a() {} //~ ERROR: cannot export any items
| ^^^^^^^^^^^^^
error: `proc-macro` crate types cannot export any items other than functions tagged with `#[proc_macro_derive]` currently
--> $DIR/exports.rs:8:1
|
LL | pub struct B; //~ ERROR: cannot export any items
| ^^^^^^^^^^^^^
error: `proc-macro` crate types cannot export any items other than functions tagged with `#[proc_macro_derive]` currently
--> $DIR/exports.rs:9:1
|
LL | pub enum C {} //~ ERROR: cannot export any items
| ^^^^^^^^^^^^^
error: `proc-macro` crate types cannot export any items other than functions tagged with `#[proc_macro_derive]` currently
--> $DIR/exports.rs:10:1
|
LL | pub mod d {} //~ ERROR: cannot export any items
| ^^^^^^^^^^^^
error: aborting due to 4 previous errors