rust/tests/ui/const-generics/early/const-param-shadowing.rs
2023-01-11 09:32:08 +00:00

8 lines
133 B
Rust

type N = u32;
struct Foo<const M: usize>;
fn test<const N: usize>() -> Foo<N> { //~ ERROR type provided when
Foo
}
fn main() {}