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

#![feature(const_generics)]
//~^ WARN the feature `const_generics` is incomplete and may cause the compiler to crash

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

fn main() {}