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

#![feature(const_generics)]
//~^ WARN the feature `const_generics` is incomplete

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

fn main() {}