rustc/tests/ui/rfcs/rfc-2632-const-trait-impl/call-generic-method-fail.rs
2024-05-23 21:15:29 +02:00

10 lines
182 B
Rust

// known-bug: #110395
#![feature(const_trait_impl)]
pub const fn equals_self<T: PartialEq>(t: &T) -> bool {
*t == *t
// (remove this) ~^ ERROR can't compare
}
fn main() {}