2023-08-13 13:59:19 +00:00
|
|
|
#![feature(const_trait_impl, effects)]
|
2020-11-22 04:19:46 +01:00
|
|
|
|
2021-08-25 14:30:09 +00:00
|
|
|
pub const fn equals_self<T: PartialEq>(t: &T) -> bool {
|
2020-11-22 04:19:46 +01:00
|
|
|
*t == *t
|
2023-12-06 02:42:59 +00:00
|
|
|
//~^ ERROR mismatched types
|
|
|
|
// FIXME(effects): diagnostic
|
2020-11-22 04:19:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|