2023-02-08 07:25:38 -06:00
|
|
|
error: feature `const_bar` implying `const_foobar` does not exist
|
|
|
|
--> $DIR/const-stability-attribute-implies-missing.rs:10:1
|
|
|
|
|
|
|
|
|
LL | #[rustc_const_unstable(feature = "const_foobar", issue = "1", implied_by = "const_bar")]
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2024-02-01 16:45:00 -06:00
|
|
|
error: `foobar` is not yet stable as a const fn
|
|
|
|
--> $DIR/const-stability-attribute-implies-missing.rs:16:18
|
|
|
|
|
|
|
|
|
LL | const VAR: u32 = foobar();
|
|
|
|
| ^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: add `#![feature(const_foobar)]` to the crate attributes to enable
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
2023-02-08 07:25:38 -06:00
|
|
|
|