summaryrefslogtreecommitdiffstats
path: root/src/test/ui/const-generics/early/const-param-shadowing.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/const-generics/early/const-param-shadowing.rs')
-rw-r--r--src/test/ui/const-generics/early/const-param-shadowing.rs7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/test/ui/const-generics/early/const-param-shadowing.rs b/src/test/ui/const-generics/early/const-param-shadowing.rs
new file mode 100644
index 000000000..ddd15dbc4
--- /dev/null
+++ b/src/test/ui/const-generics/early/const-param-shadowing.rs
@@ -0,0 +1,7 @@
+type N = u32;
+struct Foo<const M: usize>;
+fn test<const N: usize>() -> Foo<N> { //~ ERROR type provided when
+ Foo
+}
+
+fn main() {}