Skip to content

Commit 01687ed

Browse files
committed
Remove non_ascii_idents feature gate from test suite
error: the feature `non_ascii_idents` has been stable since 1.53.0 and no longer requires an attribute to enable --> test_suite/tests/test_gen.rs:6:43 | 6 | #![cfg_attr(feature = "unstable", feature(non_ascii_idents))] | ^^^^^^^^^^^^^^^^ | note: the lint level is defined here --> test_suite/tests/test_gen.rs:5:9 | 5 | #![deny(warnings)] | ^^^^^^^^ = note: `#[deny(stable_features)]` implied by `#[deny(warnings)]`
1 parent 7aa4950 commit 01687ed

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

test_suite/tests/test_gen.rs

-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
// types involved.
44

55
#![deny(warnings)]
6-
#![cfg_attr(feature = "unstable", feature(non_ascii_idents))]
76
#![allow(
87
unknown_lints,
98
mixed_script_confusables,
@@ -267,7 +266,6 @@ fn test_gen() {
267266
}
268267
assert::<EmptyEnumVariant>();
269268

270-
#[cfg(feature = "unstable")]
271269
#[derive(Serialize, Deserialize)]
272270
struct NonAsciiIdents {
273271
σ: f64,

0 commit comments

Comments
 (0)