blob: be4f27ec689a5af1d52a4d6ea15edea5340f34cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//@ run-rustfix
#![feature(generic_const_exprs, unsized_const_params, adt_const_params)]
#![allow(incomplete_features, dead_code)]
struct FieldElement<const N: &'static str> {
n: [u64; num_limbs(N)],
//~^ ERROR unconstrained generic constant
}
const fn num_limbs(_: &str) -> usize {
0
}
fn main() {}
|