Skip to content

Commit 0b526fd

Browse files
BoxyUwUlcnr
authored andcommitted
rename const_evaluatable_checked to generic_const_exprs
1 parent c8262ad commit 0b526fd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/ui/doc/doc.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
#![allow(dead_code, incomplete_features)]
44
#![warn(clippy::doc_markdown)]
5-
#![feature(custom_inner_attributes, const_generics, const_evaluatable_checked, const_option)]
5+
#![feature(custom_inner_attributes, const_generics, generic_const_exprs, const_option)]
66
#![rustfmt::skip]
77

88
/// The foo_bar function does _nothing_. See also foo::bar. (note the dot there)
@@ -203,7 +203,7 @@ fn issue_2343() {}
203203
/// __|_ _|__||_|
204204
fn pulldown_cmark_crash() {}
205205

206-
// issue #7033 - const_evaluatable_checked ICE
206+
// issue #7033 - generic_const_exprs ICE
207207
struct S<T, const N: usize>
208208
where [(); N.checked_next_power_of_two().unwrap()]: {
209209
arr: [T; N.checked_next_power_of_two().unwrap()],

0 commit comments

Comments
 (0)