2022-12-21 14:51:02 +00:00
|
|
|
error[E0658]: const closures are experimental
|
2023-03-11 21:29:15 +00:00
|
|
|
--> $DIR/gate.rs:4:6
|
2022-12-21 14:51:02 +00:00
|
|
|
|
|
|
|
|
LL | (const || {})();
|
2023-03-11 21:29:15 +00:00
|
|
|
| ^^^^^
|
2022-12-21 14:51:02 +00:00
|
|
|
|
|
|
|
|
= note: see issue #106003 <https://github.com/rust-lang/rust/issues/106003> for more information
|
|
|
|
= help: add `#![feature(const_closures)]` to the crate attributes to enable
|
2024-01-10 01:39:02 -05:00
|
|
|
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
|
2022-12-21 14:51:02 +00:00
|
|
|
|
2023-03-11 21:29:15 +00:00
|
|
|
error[E0658]: const closures are experimental
|
|
|
|
--> $DIR/gate.rs:12:5
|
|
|
|
|
|
|
|
|
LL | e!((const || {}));
|
|
|
|
| ^^^^^
|
|
|
|
|
|
|
|
|
= note: see issue #106003 <https://github.com/rust-lang/rust/issues/106003> for more information
|
|
|
|
= help: add `#![feature(const_closures)]` to the crate attributes to enable
|
2024-01-10 01:39:02 -05:00
|
|
|
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
|
2023-03-11 21:29:15 +00:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
2022-12-21 14:51:02 +00:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0658`.
|