summary refs log tree commit diff
path: root/src/test/ui/const-generics/const-param-in-trait.rs
blob: 6e4f65fe6cac0bf3bcf622dc0c36c9dbb8975859 (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

trait Trait<const T: ()> {}

fn main() {}