summary refs log tree commit diff
path: root/tests/ui/pattern/no_ref_mut_behind_and.rs
blob: c18d64904d0356e8b86760df8ec76503d4ca18c7 (plain)
1
2
3
4
5
6
7
8
9
//@ edition: 2021
//@ run-pass
#![allow(incomplete_features)]
#![feature(ref_pat_eat_one_layer_2024)]

fn main() {
    let &[[x]] = &[&mut [42]];
    let _: &i32 = x;
}