// check-pass #![feature(generic_const_exprs)] #![allow(incomplete_features)] fn two_args() -> [u8; M + 2] { [0; M + 2] } fn yay() -> [u8; 4] { two_args::() // no lint } fn main() {}