1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
Files
v/vlib/v/scanner/tests/float_literals_dot_err.out
2021-08-27 16:49:29 +03:00

7 lines
226 B
Plaintext

vlib/v/scanner/tests/float_literals_dot_err.vv:2:9: warning: float literals should have a digit after the decimal point, e.g. `1.0`
1 | fn main() {
2 | a := 1.
| ^
3 | println(a)
4 | }