Skip to content
This repository was archived by the owner on May 28, 2025. It is now read-only.

Commit fcde768

Browse files
committed
Fix clippy tests
1 parent 82f775d commit fcde768

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

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;

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

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)