diff options
Diffstat (limited to 'v_windows/v/vlib/v/checker/tests/int_modulo_by_zero_err.out')
-rw-r--r-- | v_windows/v/vlib/v/checker/tests/int_modulo_by_zero_err.out | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/v_windows/v/vlib/v/checker/tests/int_modulo_by_zero_err.out b/v_windows/v/vlib/v/checker/tests/int_modulo_by_zero_err.out new file mode 100644 index 0000000..c9d0e2d --- /dev/null +++ b/v_windows/v/vlib/v/checker/tests/int_modulo_by_zero_err.out @@ -0,0 +1,5 @@ +vlib/v/checker/tests/int_modulo_by_zero_err.vv:2:17: error: modulo by zero + 1 | fn main() { + 2 | println(3 % 0) + | ^ + 3 | } |