]> git.proxmox.com Git - rustc.git/blame - src/test/ui/const-generics/const-param-shadowing.rs
New upstream version 1.51.0+dfsg1
[rustc.git] / src / test / ui / const-generics / const-param-shadowing.rs
CommitLineData
fc512014
XL
1type N = u32;
2struct Foo<const M: usize>;
3fn test<const N: usize>() -> Foo<N> { //~ ERROR type provided when
4 Foo
5}
6
7fn main() {}