mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
checker: update enum test
This commit is contained in:
@ -5,10 +5,3 @@ vlib/v/checker/tests/enum_err.vv:4:13: error: default value for enum has to be a
|
|||||||
| ~~~~~~~
|
| ~~~~~~~
|
||||||
5 | yellow = 1+1
|
5 | yellow = 1+1
|
||||||
6 | blue
|
6 | blue
|
||||||
vlib/v/checker/tests/enum_err.vv:5:14: error: default value for enum has to be an integer
|
|
||||||
3 | enum Color {
|
|
||||||
4 | green = 'green'
|
|
||||||
5 | yellow = 1+1
|
|
||||||
| ~~~
|
|
||||||
6 | blue
|
|
||||||
7 | }
|
|
||||||
|
@ -2,7 +2,7 @@ module main
|
|||||||
|
|
||||||
enum Color {
|
enum Color {
|
||||||
green = 'green'
|
green = 'green'
|
||||||
yellow = 1+1
|
yellow
|
||||||
blue
|
blue
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user