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

27 lines
988 B
Plaintext
Raw Permalink Normal View History

error: `proc-macro` crate types currently cannot export any items other than functions tagged with `#[proc_macro]`, `#[proc_macro_derive]`, or `#[proc_macro_attribute]`
2018-12-25 16:56:47 +01:00
--> $DIR/exports.rs:7:1
|
2019-03-09 13:03:44 +01:00
LL | pub fn a() {}
| ^^^^^^^^^^
error: `proc-macro` crate types currently cannot export any items other than functions tagged with `#[proc_macro]`, `#[proc_macro_derive]`, or `#[proc_macro_attribute]`
2018-12-25 16:56:47 +01:00
--> $DIR/exports.rs:8:1
|
2019-03-09 13:03:44 +01:00
LL | pub struct B;
| ^^^^^^^^^^^^^
error: `proc-macro` crate types currently cannot export any items other than functions tagged with `#[proc_macro]`, `#[proc_macro_derive]`, or `#[proc_macro_attribute]`
2018-12-25 16:56:47 +01:00
--> $DIR/exports.rs:9:1
|
2019-03-09 13:03:44 +01:00
LL | pub enum C {}
| ^^^^^^^^^^
error: `proc-macro` crate types currently cannot export any items other than functions tagged with `#[proc_macro]`, `#[proc_macro_derive]`, or `#[proc_macro_attribute]`
2018-12-25 16:56:47 +01:00
--> $DIR/exports.rs:10:1
|
2019-03-09 13:03:44 +01:00
LL | pub mod d {}
| ^^^^^^^^^
error: aborting due to 4 previous errors