rust/tests/ui/traits/const-traits/const-and-non-const-impl.rs
Michael Goulet e91267f3f0 Move tests
2024-10-22 00:03:09 +00:00

32 lines
480 B
Rust

//@ known-bug: #110395
#![feature(const_trait_impl)]
pub struct Int(i32);
impl const std::ops::Add for i32 {
type Output = Self;
fn add(self, rhs: Self) -> Self {
self + rhs
}
}
impl std::ops::Add for Int {
type Output = Self;
fn add(self, rhs: Self) -> Self {
Int(self.0 + rhs.0)
}
}
impl const std::ops::Add for Int {
type Output = Self;
fn add(self, rhs: Self) -> Self {
Int(self.0 + rhs.0)
}
}
fn main() {}