v2 / vlib / v / checker / tests / modules / deprecated_consts / consts.v
5 lines · 4 sloc · 154 bytes · 3ffc951cf555dc4818309a507ccb9d0da4de748f
Raw
1module deprecated_consts
2
3@[deprecated: 'use built-in constant min_i8 instead']
4@[deprecated_after: '2023-12-31']
5pub const a_deprecated_const = i8(-128)
6