summaryrefslogtreecommitdiffstats
path: root/tests/ui/rfc-2632-const-trait-impl/call-generic-method-fail.rs
blob: 2bc5ee512c52fd1c77672e55b8c89926409a3756 (plain)
1
2
3
4
5
6
7
8
#![feature(const_trait_impl)]

pub const fn equals_self<T: PartialEq>(t: &T) -> bool {
    *t == *t
    //~^ ERROR can't compare
}

fn main() {}