//@ run-pass #![feature(min_generic_const_args, adt_const_params, unsized_const_params)] #![expect(incomplete_features)] #![allow(dead_code)] fn takes_tuple() {} fn generic_caller() { takes_tuple::<{ ([N, M], 5, [M, N]) }>(); takes_tuple::<{ ([1, 2], 3, [4, 5]) }>(); } fn main() {}