rust/src/test/ui/const-generics/occurs-check/bind-param.rs

18 lines
339 B
Rust
Raw Normal View History

2020-09-09 02:43:53 -05:00
// build-pass
#![feature(const_generics)]
#![allow(incomplete_features)]
// This test does not use any "unevaluated" consts, so it should compile just fine.
fn bind<const N: usize>(value: [u8; N]) -> [u8; N] {
todo!()
}
fn sink(_: [u8; 5]) {}
fn main() {
let mut arr = Default::default();
arr = bind(arr);
sink(arr);
}