We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8262ad commit 0b526fdCopy full SHA for 0b526fd
tests/ui/doc/doc.rs
@@ -2,7 +2,7 @@
2
3
#![allow(dead_code, incomplete_features)]
4
#![warn(clippy::doc_markdown)]
5
-#![feature(custom_inner_attributes, const_generics, const_evaluatable_checked, const_option)]
+#![feature(custom_inner_attributes, const_generics, generic_const_exprs, const_option)]
6
#![rustfmt::skip]
7
8
/// The foo_bar function does _nothing_. See also foo::bar. (note the dot there)
@@ -203,7 +203,7 @@ fn issue_2343() {}
203
/// __|_ _|__||_|
204
fn pulldown_cmark_crash() {}
205
206
-// issue #7033 - const_evaluatable_checked ICE
+// issue #7033 - generic_const_exprs ICE
207
struct S<T, const N: usize>
208
where [(); N.checked_next_power_of_two().unwrap()]: {
209
arr: [T; N.checked_next_power_of_two().unwrap()],
0 commit comments