Use the correct allow
This commit is contained in:
parent
af7ae2f278
commit
77f9aca2a3
1 changed files with 3 additions and 3 deletions
|
|
@ -1376,7 +1376,7 @@ impl<'a, 'b> Folder for InvocationCollector<'a, 'b> {
|
|||
// #[test] fn foo() {}
|
||||
// becomes:
|
||||
// #[test] pub fn foo_gensym(){}
|
||||
// #[allow(dead_code)]
|
||||
// #[allow(unused)]
|
||||
// use foo_gensym as foo;
|
||||
ast::ItemKind::Fn(..) if self.cx.ecfg.should_test => {
|
||||
if self.tests_nameable && item.attrs.iter().any(|attr| is_test_or_bench(attr)) {
|
||||
|
|
@ -1398,12 +1398,12 @@ impl<'a, 'b> Folder for InvocationCollector<'a, 'b> {
|
|||
self.cx.path(item.ident.span,
|
||||
vec![keywords::SelfValue.ident(), item.ident]));
|
||||
|
||||
// #[allow(dead_code)] because the test function probably isn't being referenced
|
||||
// #[allow(unused)] because the test function probably isn't being referenced
|
||||
use_item = use_item.map(|mut ui| {
|
||||
ui.attrs.push(
|
||||
self.cx.attribute(DUMMY_SP, attr::mk_list_item(DUMMY_SP,
|
||||
Ident::from_str("allow"), vec![
|
||||
attr::mk_nested_word_item(Ident::from_str("dead_code"))
|
||||
attr::mk_nested_word_item(Ident::from_str("unused"))
|
||||
]
|
||||
))
|
||||
);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue