mirror of
https://git.proxmox.com/git/rustc
synced 2025-10-15 09:07:20 +00:00
15 lines
437 B
Plaintext
15 lines
437 B
Plaintext
error: `~const` can only be applied to `#[const_trait]` traits
|
|
--> $DIR/const-bounds-non-const-trait.rs:6:28
|
|
|
|
|
LL | const fn perform<T: ~const NonConst>() {}
|
|
| ^^^^^^^^
|
|
|
|
error: `const` can only be applied to `#[const_trait]` traits
|
|
--> $DIR/const-bounds-non-const-trait.rs:9:21
|
|
|
|
|
LL | fn operate<T: const NonConst>() {}
|
|
| ^^^^^^^^
|
|
|
|
error: aborting due to 2 previous errors
|
|
|