summaryrefslogtreecommitdiffstats
path: root/src/test/ui/const-generics/min_const_generics/const_default_first.rs
blob: eafafb8a27455a55765cbd818e58ac710f5c7314 (plain)
1
2
3
4
5
6
7
#![crate_type = "lib"]
#![allow(dead_code)]

struct Both<const N: usize=3, T> {
//~^ ERROR: generic parameters with a default must be
  v: T
}