rust/tests/ui/const-generics/occurs-check/unify-n-nplusone.rs

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

17 lines
362 B
Rust
Raw Normal View History

#![feature(generic_const_exprs)]
2020-09-09 02:43:53 -05:00
#![allow(incomplete_features)]
// This test would tries to unify `N` with `N + 1` which must fail the occurs check.
2020-09-09 02:43:53 -05:00
fn bind<const N: usize>(value: [u8; N]) -> [u8; N + 1] {
todo!()
}
fn sink(_: [u8; 5]) {}
fn main() {
let mut arr = Default::default();
arr = bind(arr); //~ ERROR mismatched types
2020-09-09 02:43:53 -05:00
sink(arr);
}