2018-12-02 22:27:37 +03:00
|
|
|
error: `proc-macro` crate types cannot export any items other than functions tagged with `#[proc_macro_derive]` currently
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/exports.rs:7:1
|
2018-12-02 22:27:37 +03:00
|
|
|
|
|
|
|
|
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
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/exports.rs:8:1
|
2018-12-02 22:27:37 +03:00
|
|
|
|
|
|
|
|
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
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/exports.rs:9:1
|
2018-12-02 22:27:37 +03:00
|
|
|
|
|
|
|
|
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
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/exports.rs:10:1
|
2018-12-02 22:27:37 +03:00
|
|
|
|
|
|
|
|
LL | pub mod d {} //~ ERROR: cannot export any items
|
|
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
|
|
|
|