os-rust/src/test/ui/proc-macro/exports.stderr

27 lines
949 B
Text
Raw Normal View History

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
|
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
|
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
|
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
|
LL | pub mod d {} //~ ERROR: cannot export any items
| ^^^^^^^^^^^^
error: aborting due to 4 previous errors