summary refs log tree commit diff
path: root/src/test/ui/const-generics/issues/issue-73491.rs
blob: 05e1513bb75df36a25ea5158d7eaef98ebbfc82f (plain)
1
2
3
4
5
6
7
8
9
// check-pass
#![feature(const_generics)]
#![allow(incomplete_features)]

const LEN: usize = 1024;

fn hoge<const IN: [u32; LEN]>() {}

fn main() {}