about summary refs log tree commit diff
path: root/tests/ui/traits/const-traits/call-generic-method-chain.rs
blob: db053b48079194c053a90954d58582c7c09cd50c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
//! Basic test for calling methods on generic type parameters in `const fn`.

//@ compile-flags: -Znext-solver
//@ check-pass

#![feature(const_trait_impl, const_cmp)]

struct S;

impl const PartialEq for S {
    fn eq(&self, _: &S) -> bool {
        true
    }
    fn ne(&self, other: &S) -> bool {
        !self.eq(other)
    }
}

const fn equals_self<T: [const] PartialEq>(t: &T) -> bool {
    *t == *t
}

const fn equals_self_wrapper<T: [const] PartialEq>(t: &T) -> bool {
    equals_self(t)
}

pub const EQ: bool = equals_self_wrapper(&S);

fn main() {}