summaryrefslogtreecommitdiffstats
path: root/tests/ui/rfc-2632-const-trait-impl/call-generic-method-dup-bound.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/rfc-2632-const-trait-impl/call-generic-method-dup-bound.rs')
-rw-r--r--tests/ui/rfc-2632-const-trait-impl/call-generic-method-dup-bound.rs31
1 files changed, 0 insertions, 31 deletions
diff --git a/tests/ui/rfc-2632-const-trait-impl/call-generic-method-dup-bound.rs b/tests/ui/rfc-2632-const-trait-impl/call-generic-method-dup-bound.rs
deleted file mode 100644
index e618160d3..000000000
--- a/tests/ui/rfc-2632-const-trait-impl/call-generic-method-dup-bound.rs
+++ /dev/null
@@ -1,31 +0,0 @@
-// known-bug: #110395
-
-#![feature(const_trait_impl)]
-
-struct S;
-
-impl const PartialEq for S {
- fn eq(&self, _: &S) -> bool {
- true
- }
- fn ne(&self, other: &S) -> bool {
- !self.eq(other)
- }
-}
-
-// This duplicate bound should not result in ambiguities. It should be equivalent to a single ~const
-// bound.
-const fn equals_self<T: PartialEq + ~const PartialEq>(t: &T) -> bool {
- *t == *t
-}
-
-trait A: PartialEq {}
-impl<T: PartialEq> A for T {}
-
-const fn equals_self2<T: A + ~const PartialEq>(t: &T) -> bool {
- *t == *t
-}
-
-pub const EQ: bool = equals_self(&S) && equals_self2(&S);
-
-fn main() {}