16 lines
224 B
Rust
16 lines
224 B
Rust
|
|
// check-pass
|
||
|
|
#![feature(const_generics)]
|
||
|
|
#![allow(incomplete_features)]
|
||
|
|
|
||
|
|
struct Bar<T>(T);
|
||
|
|
|
||
|
|
impl<T> Bar<T> {
|
||
|
|
const fn value() -> usize {
|
||
|
|
42
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
struct Foo<const N: [u8; Bar::<u32>::value()]>;
|
||
|
|
|
||
|
|
fn main() {}
|