vxx2 / vlib / v / checker / tests / static_init_err.vv
11 lines · 10 sloc · 113 bytes · 1e0bda4ebcf4559b24b46fb019264fb09ddffd9a
Raw
1@[unsafe]
2fn foo() {
3 b := 23
4 static aa := b
5 static bb := 1 + 1
6 static cc := ''.str()
7}
8
9fn main() {
10 foo()
11}
12