mirror of
https://git.proxmox.com/git/rustc
synced 2025-06-04 02:26:12 +00:00
15 lines
371 B
Plaintext
15 lines
371 B
Plaintext
error: cannot specialize on const impl with non-const impl
|
|
--> $DIR/specializing-constness.rs:23:1
|
|
|
|
|
LL | impl<T: Spec + Sup> A for T {
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: missing `~const` qualifier for specialization
|
|
--> $DIR/specializing-constness.rs:23:9
|
|
|
|
|
LL | impl<T: Spec + Sup> A for T {
|
|
| ^^^^
|
|
|
|
error: aborting due to 2 previous errors
|
|
|