rust/src/test/ui/const-generics/const-param-shadowing.rs
Bastian Kauschke c4ba60a191 update tests
2020-12-26 18:24:10 +01:00

7 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() {}