summaryrefslogtreecommitdiffstats
path: root/tests/ui/const-generics/arg-in-pat-3.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/const-generics/arg-in-pat-3.rs')
-rw-r--r--tests/ui/const-generics/arg-in-pat-3.rs43
1 files changed, 43 insertions, 0 deletions
diff --git a/tests/ui/const-generics/arg-in-pat-3.rs b/tests/ui/const-generics/arg-in-pat-3.rs
new file mode 100644
index 000000000..24626a3b6
--- /dev/null
+++ b/tests/ui/const-generics/arg-in-pat-3.rs
@@ -0,0 +1,43 @@
+// check-pass
+struct Foo<const N: usize>;
+
+fn bindingp() {
+ match Foo {
+ mut x @ Foo::<3> => {
+ let ref mut _x @ Foo::<3> = x;
+ }
+ }
+}
+
+struct Bar<const N: usize> {
+ field: Foo<N>,
+}
+
+fn structp() {
+ match todo!() {
+ Bar::<3> {
+ field: Foo::<3>,
+ } => (),
+ }
+}
+
+struct Baz<const N: usize>(Foo<N>);
+
+fn tuplestructp() {
+ match Baz(Foo) {
+ Baz::<3>(Foo::<3>) => (),
+ }
+}
+
+impl<const N: usize> Baz<N> {
+ const ASSOC: usize = 3;
+}
+
+fn pathp() {
+ match 3 {
+ Baz::<3>::ASSOC => (),
+ _ => (),
+ }
+}
+
+fn main() {}