mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
26 lines
693 B
Rust
26 lines
693 B
Rust
// check-pass
|
|
|
|
#![feature(adt_const_params, generic_const_exprs)]
|
|
//~^ WARN the feature `adt_const_params` is incomplete and may not be safe to use and/or cause compiler crashes [incomplete_features]
|
|
//~^^ WARN the feature `generic_const_exprs` is incomplete and may not be safe to use and/or cause compiler crashes [incomplete_features]
|
|
|
|
pub struct Changes<const CHANGES: &'static [&'static str]>
|
|
where
|
|
[(); CHANGES.len()]:,
|
|
{
|
|
changes: [usize; CHANGES.len()],
|
|
}
|
|
|
|
impl<const CHANGES: &'static [&'static str]> Changes<CHANGES>
|
|
where
|
|
[(); CHANGES.len()]:,
|
|
{
|
|
pub const fn new() -> Self {
|
|
Self {
|
|
changes: [0; CHANGES.len()],
|
|
}
|
|
}
|
|
}
|
|
|
|
pub fn main() {}
|