about summary refs log tree commit diff
path: root/tests/ui/traits/const-traits/call-generic-method-nonconst-bound.rs
blob: 9dbc2b95626891190b2af95cf9a8fbcb8d170221 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//@ check-pass

struct S;

impl PartialEq for S {
    fn eq(&self, _: &S) -> bool {
        true
    }
}

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

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

fn main() {}