11 lines
201 B
Rust
11 lines
201 B
Rust
// FIXME(effects)
|
|
// check-pass
|
|
#![feature(const_trait_impl, effects)]
|
|
|
|
pub const fn equals_self<T: PartialEq>(t: &T) -> bool {
|
|
*t == *t
|
|
// (remove this) ~^ ERROR can't compare
|
|
}
|
|
|
|
fn main() {}
|