vxx2 / vlib / v / checker / tests / const_import_conflict_err.vv
7 lines · 5 sloc · 84 bytes · 1b3385cc34ff783e793d1a26a8ec5be587c80fe0
Raw
1import strings
2
3const strings = ['hello', 'world']
4
5fn main() {
6 println(strings)
7}
8