mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
8 lines
222 B
Plaintext
8 lines
222 B
Plaintext
vlib/v/checker/tests/unknown_function.vv:4:15: error: unknown function: math.max_i64 .
|
|
Did you mean `math.max`?
|
|
2 |
|
|
3 | fn main() {
|
|
4 | println(math.max_i64())
|
|
| ~~~~~~~~~
|
|
5 | }
|