2020-02-04 14:03:37 -08:00
|
|
|
#![feature(const_trait_impl)]
|
|
|
|
|
2022-08-28 06:27:31 +00:00
|
|
|
#[const_trait]
|
2020-02-04 14:03:37 -08:00
|
|
|
pub trait Plus {
|
|
|
|
fn plus(self, rhs: Self) -> Self;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl const Plus for i32 {
|
|
|
|
fn plus(self, rhs: Self) -> Self {
|
|
|
|
self + rhs
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Plus for u32 {
|
|
|
|
fn plus(self, rhs: Self) -> Self {
|
|
|
|
self + rhs
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub const fn add_i32(a: i32, b: i32) -> i32 {
|
2020-02-05 09:35:32 -08:00
|
|
|
a.plus(b) // ok
|
2020-02-04 14:03:37 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
pub const fn add_u32(a: u32, b: u32) -> u32 {
|
|
|
|
a.plus(b)
|
2022-01-28 21:57:29 +11:00
|
|
|
//~^ ERROR the trait bound
|
2020-02-04 14:03:37 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|