v2 / vlib / v / tests / aliases / alias_const_array_fixed_test.v
19 lines · 14 sloc · 275 bytes · d8422c73e0433b048ea67b6c1a10694e1562c9e4
Raw
1module main
2
3const image_width = 800
4const image_height = 400
5
6struct Colour {
7 r u8
8 g u8
9 b u8
10}
11
12const buffer_size = image_width * image_height * sizeof[Colour]()
13
14type ImageBuffer = [buffer_size]Colour
15
16fn test_main() {
17 t := ImageBuffer{}
18 assert t.len == buffer_size
19}
20