Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
//@ run-pass
fn foo<const N: usize>(v: &[u8; N]) -> &[u8] {
v
}
fn main() {
assert_eq!(foo(&[1, 2]), &[1, 2]);