mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
13 lines
244 B
Rust
13 lines
244 B
Rust
// check-pass
|
|
|
|
#![allow(incomplete_features)]
|
|
#![feature(adt_const_params)]
|
|
|
|
struct FooConst<const ARRAY: &'static [&'static str]> {}
|
|
|
|
const FOO_ARR: &[&'static str; 2] = &["Hello", "Friend"];
|
|
|
|
fn main() {
|
|
let _ = FooConst::<FOO_ARR> {};
|
|
}
|