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

fn test<const N: [u8; 1 + 2]>() {}

struct Foo<const N: [u8; 1 + 2]>;

fn main() {}