]> git.proxmox.com Git - rustc.git/blame - src/test/ui/const-generics/generic_const_exprs/no_dependence.rs
Update unsuspicious file list
[rustc.git] / src / test / ui / const-generics / generic_const_exprs / no_dependence.rs
CommitLineData
923072b8
FG
1// check-pass
2#![feature(generic_const_exprs)]
3#![allow(incomplete_features)]
4
5fn two_args<const N: usize, const M: usize>() -> [u8; M + 2] {
6 [0; M + 2]
7}
8
9fn yay<const N: usize>() -> [u8; 4] {
10 two_args::<N, 2>() // no lint
11}
12
13fn main() {}