Files
rust/tests/ui/traits/const-traits/specialization/const-default-impl-non-const-specialized-impl.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
629 B
Rust
Raw Normal View History

// 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
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))]
#[const_trait]
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
fn value() -> u32 {
println!("You can't do that (constly)");
42
}
}
fn main() {}