Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
checker
/
tests
/
enum_non_comptime_cast_call_err.out
7
lines
·
7
sloc
·
257 bytes
·
599ae8087aaa3dccf495aaea23e9bf2238de6c55
Raw
1
vlib/v/checker/tests/enum_non_comptime_cast_call_err.vv:6:8: error: the default value for an enum has to be an integer
2
4 |
3
5 | enum Color {
4
6 | red = int(get_value(1, 2, 3, 4))
5
| ~~~~~~~~~~~~~~~~~~~~~~~~~~
6
7 | }
7
8 |
8