2022-11-06 01:07:06 -05:00
|
|
|
// Tests that specializing trait impls must be at least as const as the default impl.
|
2024-11-23 01:00:11 +00:00
|
|
|
//@ revisions: spec min_spec
|
2022-03-24 19:24:40 -05:00
|
|
|
|
2024-10-30 18:03:44 +00:00
|
|
|
#![feature(const_trait_impl)]
|
2024-11-23 01:00:11 +00:00
|
|
|
#![cfg_attr(spec, feature(specialization))]
|
|
|
|
|
//[spec]~^ WARN the feature `specialization` is incomplete
|
|
|
|
|
#![cfg_attr(min_spec, feature(min_specialization))]
|
2022-03-24 19:24:40 -05:00
|
|
|
|
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;
|
|
|
|
|
|
2024-11-23 01:00:11 +00:00
|
|
|
impl Value for FortyTwo {
|
|
|
|
|
//~^ ERROR conflicting implementations
|
2022-03-24 19:24:40 -05:00
|
|
|
fn value() -> u32 {
|
|
|
|
|
println!("You can't do that (constly)");
|
|
|
|
|
42
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn main() {}
|