tests: fix lef_shift test

pull/4602/head
Alexander Medvednikov 2020-04-26 09:29:26 +02:00
parent b67698888c
commit 20bcb6b8bb
1 changed files with 2 additions and 2 deletions

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| }