v2 / vlib / v / checker / tests / deprecations_consts.out
6 lines · 6 sloc · 325 bytes · 7d47219808f5517417290f4bbae4bc1fda35e5ba
Raw
1vlib/v/checker/tests/deprecations_consts.vv:4:25: error: const `deprecated_consts.a_deprecated_const` has been deprecated since 2023-12-31; use built-in constant min_i8 instead
2 2 |
3 3 | fn main() {
4 4 | dump(deprecated_consts.a_deprecated_const)
5 | ~~~~~~~~~~~~~~~~~~
6 5 | }
7