about summary refs log tree commit diff
path: root/tests/ui/traits/const-traits/call-generic-method-pass.rs
blob: 01c5860c8ec5ee8e120656a96854d49f3df97948 (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
//! 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
}

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

fn main() {}