summary refs log tree commit diff
path: root/src/test/ui/rfc-2632-const-trait-impl/call-generic-method-fail.rs
blob: dc4d5561d47459b2b44de68aa58b3a326efe22ed (plain)
1
2
3
4
5
6
7
8
9
10
11
#![feature(const_fn_trait_bound)]
#![feature(const_trait_impl)]
#![feature(const_trait_bound_opt_out)]
#![allow(incomplete_features)]

pub const fn equals_self<T: ?const PartialEq>(t: &T) -> bool {
    *t == *t
    //~^ ERROR calls in constant functions are limited to constant functions
}

fn main() {}