about summary refs log tree commit diff
path: root/tests/ui/mir/unsize-trait.rs
blob: 7d4d7103a46dc2bf26e5af0f25212ef860f3ea81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Check that the interpreter does not ICE when trying to unsize `B` to `[u8]`.
// This is a `build` test to ensure that const-prop-lint runs.
//@ build-pass

#![feature(unsize)]

fn foo<B>(buffer: &mut [B; 2])
    where B: std::marker::Unsize<[u8]>,
{
    let buffer: &[u8] = &buffer[0];
}

fn main() {
    foo(&mut [[0], [5]]);
}