Skip to content

Commit 696ac95

Browse files
Fix error message about exported symbols from proc-macro crates
Someone forgot to update the error message after `#[proc_macro]` and `#[proc_macro_attribute]` were stabilized.
1 parent a3b6e57 commit 696ac95

File tree

4 files changed

+12
-10
lines changed

4 files changed

+12
-10
lines changed

src/libsyntax_ext/proc_macro_harness.rs

+6-4
Original file line numberDiff line numberDiff line change
@@ -92,10 +92,12 @@ pub fn inject(sess: &ParseSess,
9292
impl<'a> CollectProcMacros<'a> {
9393
fn check_not_pub_in_root(&self, vis: &ast::Visibility, sp: Span) {
9494
if self.is_proc_macro_crate && self.in_root && vis.node.is_pub() {
95-
self.handler.span_err(sp,
96-
"`proc-macro` crate types cannot \
97-
export any items other than functions \
98-
tagged with `#[proc_macro_derive]` currently");
95+
self.handler.span_err(
96+
sp,
97+
"`proc-macro` crate types currently cannot export any items other \
98+
than functions tagged with `#[proc_macro]`, `#[proc_macro_derive]`, \
99+
or `#[proc_macro_attribute]`",
100+
);
99101
}
100102
}
101103

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

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
1-
error: `proc-macro` crate types cannot export any items other than functions tagged with `#[proc_macro_derive]` currently
1+
error: `proc-macro` crate types currently cannot export any items other than functions tagged with `#[proc_macro]`, `#[proc_macro_derive]`, or `#[proc_macro_attribute]`
22
--> $DIR/exports.rs:7:1
33
|
44
LL | pub fn a() {}
55
| ^^^^^^^^^^^^^
66

7-
error: `proc-macro` crate types cannot export any items other than functions tagged with `#[proc_macro_derive]` currently
7+
error: `proc-macro` crate types currently cannot export any items other than functions tagged with `#[proc_macro]`, `#[proc_macro_derive]`, or `#[proc_macro_attribute]`
88
--> $DIR/exports.rs:8:1
99
|
1010
LL | pub struct B;
1111
| ^^^^^^^^^^^^^
1212

13-
error: `proc-macro` crate types cannot export any items other than functions tagged with `#[proc_macro_derive]` currently
13+
error: `proc-macro` crate types currently cannot export any items other than functions tagged with `#[proc_macro]`, `#[proc_macro_derive]`, or `#[proc_macro_attribute]`
1414
--> $DIR/exports.rs:9:1
1515
|
1616
LL | pub enum C {}
1717
| ^^^^^^^^^^^^^
1818

19-
error: `proc-macro` crate types cannot export any items other than functions tagged with `#[proc_macro_derive]` currently
19+
error: `proc-macro` crate types currently cannot export any items other than functions tagged with `#[proc_macro]`, `#[proc_macro_derive]`, or `#[proc_macro_attribute]`
2020
--> $DIR/exports.rs:10:1
2121
|
2222
LL | pub mod d {}

src/test/ui/proc-macro/pub-at-crate-root.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
extern crate proc_macro;
77

8-
pub mod a { //~ `proc-macro` crate types cannot export any items
8+
pub mod a { //~ `proc-macro` crate types currently cannot export any items
99
use proc_macro::TokenStream;
1010

1111
#[proc_macro_derive(B)]

src/test/ui/proc-macro/pub-at-crate-root.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
error: `proc-macro` crate types cannot export any items other than functions tagged with `#[proc_macro_derive]` currently
1+
error: `proc-macro` crate types currently cannot export any items other than functions tagged with `#[proc_macro]`, `#[proc_macro_derive]`, or `#[proc_macro_attribute]`
22
--> $DIR/pub-at-crate-root.rs:8:1
33
|
44
LL | / pub mod a {

0 commit comments

Comments
 (0)