rust/tests/ui/rfc-2632-const-trait-impl/call-generic-method-fail.rs
2023-04-16 11:38:52 +00: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() {}