summary refs log tree commit diff
path: root/src/test/ui/const-generics/unused-const-param.rs
blob: 2918e399dc8ee7e8f7fc37416118457d84b1c0eb (plain)
1
2
3
4
5
6
7
8
9
// check-pass
// revisions: full min

#![cfg_attr(full, feature(const_generics))]
#![cfg_attr(full, allow(incomplete_features))]

struct A<const N: usize>; // ok

fn main() {}