summaryrefslogtreecommitdiffstats
path: root/src/test/ui/generic-associated-types/const-generics-gat-in-trait-return-type-1.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/generic-associated-types/const-generics-gat-in-trait-return-type-1.rs')
-rw-r--r--src/test/ui/generic-associated-types/const-generics-gat-in-trait-return-type-1.rs20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/test/ui/generic-associated-types/const-generics-gat-in-trait-return-type-1.rs b/src/test/ui/generic-associated-types/const-generics-gat-in-trait-return-type-1.rs
deleted file mode 100644
index c5f9a25a6..000000000
--- a/src/test/ui/generic-associated-types/const-generics-gat-in-trait-return-type-1.rs
+++ /dev/null
@@ -1,20 +0,0 @@
-// run-pass
-
-// 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(&self) -> Self::Assoc<3>;
-}
-
-impl Foo for () {
- type Assoc<const N: usize> = [(); N];
- fn foo(&self) -> Self::Assoc<3> {
- [(); 3]
- }
-}
-
-fn main() {
- assert_eq!(().foo(), [(); 3]);
-}