2020-02-04 16:03:37 -06:00
|
|
|
#![feature(const_trait_impl)]
|
|
|
|
|
2022-08-28 01:27:31 -05:00
|
|
|
#[const_trait]
|
2020-02-04 16:03:37 -06: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 11:35:32 -06:00
|
|
|
a.plus(b) // ok
|
2020-02-04 16:03:37 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
pub const fn add_u32(a: u32, b: u32) -> u32 {
|
|
|
|
a.plus(b)
|
2022-01-28 04:57:29 -06:00
|
|
|
//~^ ERROR the trait bound
|
2020-02-04 16:03:37 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|