2024-06-27 17:07:03 +00:00
|
|
|
error: `~const` can only be applied to `#[const_trait]` traits
|
2025-01-15 08:32:30 +00:00
|
|
|
--> $DIR/normalize-tait-in-const.rs:27:35
|
2023-07-29 08:20:25 +00:00
|
|
|
|
|
2024-06-27 17:07:03 +00:00
|
|
|
LL | const fn with_positive<F: for<'a> ~const Fn(&'a Alias<'a>) + ~const Destruct>(fun: F) {
|
2024-12-09 19:34:43 +00:00
|
|
|
| ^^^^^^ can't be applied to `Fn`
|
|
|
|
|
|
|
|
|
note: `Fn` can't be used with `~const` because it isn't annotated with `#[const_trait]`
|
|
|
|
--> $SRC_DIR/core/src/ops/function.rs:LL:COL
|
2023-07-29 08:20:25 +00:00
|
|
|
|
2024-10-20 19:49:11 +00:00
|
|
|
error: `~const` can only be applied to `#[const_trait]` traits
|
2025-01-15 08:32:30 +00:00
|
|
|
--> $DIR/normalize-tait-in-const.rs:27:35
|
2024-10-20 19:49:11 +00:00
|
|
|
|
|
|
|
|
LL | const fn with_positive<F: for<'a> ~const Fn(&'a Alias<'a>) + ~const Destruct>(fun: F) {
|
2024-12-09 19:34:43 +00:00
|
|
|
| ^^^^^^ can't be applied to `Fn`
|
2024-10-20 19:49:11 +00:00
|
|
|
|
|
2024-12-09 19:34:43 +00:00
|
|
|
note: `Fn` can't be used with `~const` because it isn't annotated with `#[const_trait]`
|
|
|
|
--> $SRC_DIR/core/src/ops/function.rs:LL:COL
|
2024-10-20 19:49:11 +00:00
|
|
|
= note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no`
|
|
|
|
|
2024-07-26 10:04:02 +00:00
|
|
|
error: unconstrained opaque type
|
|
|
|
--> $DIR/normalize-tait-in-const.rs:14:26
|
|
|
|
|
|
|
|
|
LL | pub type Alias<'a> = impl T<Item = &'a ()>;
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: `Alias` must be used in combination with a concrete type within the same crate
|
|
|
|
|
2024-06-27 17:07:03 +00:00
|
|
|
error[E0015]: cannot call non-const closure in constant functions
|
2025-01-15 08:32:30 +00:00
|
|
|
--> $DIR/normalize-tait-in-const.rs:28:5
|
2024-06-27 17:07:03 +00:00
|
|
|
|
|
|
|
|
LL | fun(filter_positive());
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: calls in constant functions are limited to constant functions, tuple structs and tuple variants
|
|
|
|
|
2024-07-26 10:04:02 +00:00
|
|
|
error[E0308]: mismatched types
|
|
|
|
--> $DIR/normalize-tait-in-const.rs:22:9
|
|
|
|
|
|
|
|
|
LL | pub type Alias<'a> = impl T<Item = &'a ()>;
|
|
|
|
| --------------------- the expected opaque type
|
|
|
|
...
|
|
|
|
LL | pub const fn filter_positive<'a>() -> &'a Alias<'a> {
|
|
|
|
| ------------- expected `&'a foo::Alias<'a>` because of return type
|
|
|
|
LL | &&S
|
|
|
|
| ^^^ expected `&Alias<'_>`, found `&&S`
|
|
|
|
|
|
|
|
|
= note: expected reference `&'a foo::Alias<'a>`
|
|
|
|
found reference `&&S`
|
|
|
|
note: this item must have a `#[define_opaque(foo::Alias)]` attribute to be able to define hidden types
|
|
|
|
--> $DIR/normalize-tait-in-const.rs:21:18
|
|
|
|
|
|
|
|
|
LL | pub const fn filter_positive<'a>() -> &'a Alias<'a> {
|
|
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: aborting due to 5 previous errors
|
2022-10-25 02:11:24 +00:00
|
|
|
|
2024-07-26 10:04:02 +00:00
|
|
|
Some errors have detailed explanations: E0015, E0308.
|
|
|
|
For more information about an error, try `rustc --explain E0015`.
|