]> git.lizzy.rs Git - rust.git/blob - src/test/ui/const-generics/min_const_generics/default_function_param.rs
Auto merge of #80267 - 0urobor0s:ouro/61592, r=jyn514
[rust.git] / src / test / ui / const-generics / min_const_generics / default_function_param.rs
1 fn foo<const SIZE: usize = 5>() {}
2                       //~^ ERROR expected one of `!`, `(`, `+`, `,`, `::`, `<`, or `>`, found `=`
3
4 fn main() {}