vxx2 / vlib / v / checker / tests / func_with_static_keyword_err.vv
7 lines · 6 sloc · 79 bytes · 89c56fb5eea5102ce60d61b649709ae270adec33
Raw
1fn a__static__b() (int,int) {
2 return 1,2
3}
4
5fn main() {
6 a := a__static__b()
7}