v2 / vlib / v / checker / tests / globals / name_conflict_with_const.out
5 lines · 5 sloc · 186 bytes · a741db43f388822bd078daa617d285ed6cf7766b
Raw
1vlib/v/checker/tests/globals/name_conflict_with_const.vv:3:10: error: duplicate global and const `foo`
2 1 | const foo = 'abc'
3 2 |
4 3 | __global foo = 123
5 | ~~~
6