vq / vlib / v / fmt / tests / allow_const_with_decl_assign_input.vv
19 lines · 13 sloc · 168 bytes
Raw
1const a := 123
2
3const b := 'abc'
4
5const c := rune(123)
6
7const d := u64(2 * c)
8
9const f := func()
10
11fn func() int {
12 return 42
13}
14
15dump(a)
16dump(b)
17dump(c)
18dump(d)
19dump(f)
20