rust/tests/ui/consts/refs_check_const_value_eq-issue-88876.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
245 B
Rust
Raw Normal View History

//@ 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> {};
}