1 2 3 4 5
#![allow(incomplete_features)] #![feature(generic_const_exprs)] pub fn pop<const N: usize>(_: [(); N]) -> [(); N - 1] { panic!() }