summaryrefslogtreecommitdiffstats
path: root/src/test/ui/generic-associated-types/const-generics-gat-in-trait-return-type-2.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/generic-associated-types/const-generics-gat-in-trait-return-type-2.rs')
-rw-r--r--src/test/ui/generic-associated-types/const-generics-gat-in-trait-return-type-2.rs21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/test/ui/generic-associated-types/const-generics-gat-in-trait-return-type-2.rs b/src/test/ui/generic-associated-types/const-generics-gat-in-trait-return-type-2.rs
new file mode 100644
index 000000000..51046be79
--- /dev/null
+++ b/src/test/ui/generic-associated-types/const-generics-gat-in-trait-return-type-2.rs
@@ -0,0 +1,21 @@
+// run-pass
+#![feature(generic_associated_types)]
+
+// This test unsures that with_opt_const_param returns the
+// def_id of the N param in the Foo::Assoc GAT.
+
+trait Foo {
+ type Assoc<const N: usize>;
+ fn foo<const N: usize>(&self) -> Self::Assoc<N>;
+}
+
+impl Foo for () {
+ type Assoc<const N: usize> = [(); N];
+ fn foo<const N: usize>(&self) -> Self::Assoc<N> {
+ [(); N]
+ }
+}
+
+fn main() {
+ assert_eq!(().foo::<10>(), [(); 10]);
+}