2022-11-06 01:07:06 -05:00
|
|
|
// Tests that specializing trait impls must be at least as const as the default impl.
|
2022-03-24 19:24:40 -05:00
|
|
|
|
2023-08-06 08:20:55 -05:00
|
|
|
#![feature(const_trait_impl, effects)]
|
2022-03-24 19:24:40 -05:00
|
|
|
#![feature(min_specialization)]
|
|
|
|
|
2022-11-05 23:12:57 -05:00
|
|
|
#[const_trait]
|
2022-03-24 19:24:40 -05:00
|
|
|
trait Value {
|
|
|
|
fn value() -> u32;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T> const Value for T {
|
|
|
|
default fn value() -> u32 {
|
|
|
|
0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct FortyTwo;
|
|
|
|
|
2022-09-13 22:18:14 -05:00
|
|
|
impl Value for FortyTwo { //~ ERROR cannot specialize on const impl with non-const impl
|
2022-03-24 19:24:40 -05:00
|
|
|
fn value() -> u32 {
|
|
|
|
println!("You can't do that (constly)");
|
|
|
|
42
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|