Skip to content

Commit

Permalink
Deprecated proc_macro doesn't trigger warning on build library
Browse files Browse the repository at this point in the history
Change-Id: Ib3a396e7334d209fe6c6ef425bbfc7b2ae471378
  • Loading branch information
XiangQingW committed Oct 21, 2019
1 parent b7a9c28 commit 33910f9
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/libsyntax_ext/proc_macro_harness.rs
Original file line number Diff line number Diff line change
Expand Up @@ -416,6 +416,16 @@ fn mk_decls(
).map(|mut i| {
let attr = cx.meta_word(span, sym::rustc_proc_macro_decls);
i.attrs.push(cx.attribute(attr));

let deprecated_attr = attr::mk_nested_word_item(
Ident::new(sym::deprecated, span)
);
let allow_deprecated_attr = attr::mk_list_item(
Ident::new(sym::allow, span),
vec![deprecated_attr]
);
i.attrs.push(cx.attribute(allow_deprecated_attr));

i
});

Expand Down
15 changes: 15 additions & 0 deletions src/test/ui/proc-macro/proc-macro-deprecated-attr.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
// build-pass

#![crate_type = "proc-macro"]

extern crate proc_macro;
use proc_macro::*;

#[proc_macro]
#[deprecated(since = "1.0.0", note = "test")]
pub fn test_compile_without_warning_with_deprecated(_: TokenStream) -> TokenStream {
"
extern crate proc_macro;
fn foo() { }
".parse().unwrap()
}

0 comments on commit 33910f9

Please sign in to comment.