v2 / vlib / v / fmt / tests / allow_const_with_decl_assign_input.vv
19 lines · 13 sloc · 168 bytes · 598992b2083a06ef37ae3e94855a5565b3f8ab4b
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