rust/tests/ui/impl-trait/normalize-tait-in-const.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
545 B
Plaintext
Raw Normal View History

2023-07-27 10:51:02 -05:00
error[E0493]: destructor of `F` cannot be evaluated at compile-time
--> $DIR/normalize-tait-in-const.rs:25:79
|
LL | const fn with_positive<F: ~const for<'a> Fn(&'a Alias<'a>) + ~const Destruct>(fun: F) {
| ^^^ the destructor for this type cannot be evaluated in constant functions
LL | fun(filter_positive());
LL | }
| - value is dropped here
2022-10-24 21:11:24 -05:00
error: aborting due to previous error
2023-07-27 10:51:02 -05:00
For more information about this error, try `rustc --explain E0493`.