mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 07:44:10 +00:00
15 lines
357 B
Plaintext
15 lines
357 B
Plaintext
error: `~const` is not allowed here
|
|
--> $DIR/issue-90052.rs:6:22
|
|
|
|
|
LL | fn foo<T>() where T: ~const Bar {}
|
|
| ^^^^^^^^^^
|
|
|
|
|
note: this function is not `const`, so it cannot have `~const` trait bounds
|
|
--> $DIR/issue-90052.rs:6:4
|
|
|
|
|
LL | fn foo<T>() where T: ~const Bar {}
|
|
| ^^^
|
|
|
|
error: aborting due to previous error
|
|
|