1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

tests: fix lef_shift test

This commit is contained in:
Alexander Medvednikov 2020-04-26 09:29:26 +02:00
parent b67698888c
commit 20bcb6b8bb

View File

@ -1,6 +1,6 @@
vlib/v/checker/tests/inout/left_shift_err.v:3:7: error: cannot shift type string into array_int
1| fn main() {
2| l := []int
2| l := []int{}
3| l << 'test'
~~~~~~
4| }
4| }