Skip to content

Commit 683db31

Browse files
committedOct 22, 2020
Fix clippy tests
·
1.89.01.49.0
1 parent e0b6111 commit 683db31

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed
 

‎src/tools/clippy/tests/ui/auxiliary/proc_macro_attr.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33

44
#![crate_type = "proc-macro"]
55
#![feature(repr128, proc_macro_hygiene, proc_macro_quote, box_patterns)]
6+
#![allow(incomplete_features)]
67
#![allow(clippy::useless_conversion)]
78

89
extern crate proc_macro;

‎src/tools/clippy/tests/ui/auxiliary/proc_macro_derive.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33

44
#![crate_type = "proc-macro"]
55
#![feature(repr128, proc_macro_quote)]
6+
#![allow(incomplete_features)]
67

78
extern crate proc_macro;
89

‎src/tools/clippy/tests/ui/crashes/auxiliary/proc_macro_crash.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
// contain a proc-macro.
77

88
#![feature(repr128)]
9+
#![allow(incomplete_features)]
910
#![crate_type = "proc-macro"]
1011

1112
extern crate proc_macro;

0 commit comments

Comments
 (0)
Please sign in to comment.