mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
21 lines
599 B
Plaintext
21 lines
599 B
Plaintext
error: ~const can only be applied to `#[const_trait]` traits
|
|
--> $DIR/const_trait_impl.rs:34:16
|
|
|
|
|
LL | impl<T: ~const Default> const A for T {
|
|
| ^^^^^^^
|
|
|
|
error: ~const can only be applied to `#[const_trait]` traits
|
|
--> $DIR/const_trait_impl.rs:40:16
|
|
|
|
|
LL | impl<T: ~const Default + ~const Sup> const A for T {
|
|
| ^^^^^^^
|
|
|
|
error: ~const can only be applied to `#[const_trait]` traits
|
|
--> $DIR/const_trait_impl.rs:46:16
|
|
|
|
|
LL | impl<T: ~const Default + ~const Sub> const A for T {
|
|
| ^^^^^^^
|
|
|
|
error: aborting due to 3 previous errors
|
|
|