summary refs log tree commit diff
path: root/src/test/ui/const-generics/unused-const-param.rs
blob: ee98e5eb4a01fd070c385d68646b2c921ab09eae (plain)
1
2
3
4
5
6
7
8
// run-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() {}