summary refs log tree commit diff
path: root/tests/ui/impl-trait/in-ctfe/array-len.rs
blob: 73ae20495d577ace563f062ffae94634535aa5f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//! Check that array lengths can observe associated types of opaque types
// check-pass
trait MyTrait: Copy {
    const ASSOC: usize;
}

impl MyTrait for u8 {
    const ASSOC: usize = 32;
}

const fn yeet() -> impl MyTrait {
    0u8
}

const fn output<T: MyTrait>(_: T) -> usize {
    <T as MyTrait>::ASSOC
}

fn main() {
    let x = [0u8; output(yeet())];
    println!("{:?}", x);
}