20 lines
599 B
Rust
20 lines
599 B
Rust
// revisions: full min
|
|
|
|
#![cfg_attr(full, feature(const_generics))]
|
|
#![cfg_attr(full, allow(incomplete_features))]
|
|
#![cfg_attr(min, feature(min_const_generics))]
|
|
|
|
pub struct MyArray<const COUNT: usize>([u8; COUNT + 1]);
|
|
//[full]~^ ERROR constant expression depends on a generic parameter
|
|
//[min]~^^ ERROR generic parameters may not be used
|
|
|
|
impl<const COUNT: usize> MyArray<COUNT> {
|
|
fn inner(&self) -> &[u8; COUNT + 1] {
|
|
//[full]~^ ERROR constant expression depends on a generic parameter
|
|
//[min]~^^ ERROR generic parameters may not be used
|
|
&self.0
|
|
}
|
|
}
|
|
|
|
fn main() {}
|