diff options
Diffstat (limited to 'v_windows/v/old/vlib/v/checker/tests/cast_err.vv')
-rw-r--r-- | v_windows/v/old/vlib/v/checker/tests/cast_err.vv | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/v_windows/v/old/vlib/v/checker/tests/cast_err.vv b/v_windows/v/old/vlib/v/checker/tests/cast_err.vv new file mode 100644 index 0000000..bcf8ad3 --- /dev/null +++ b/v_windows/v/old/vlib/v/checker/tests/cast_err.vv @@ -0,0 +1,10 @@ +fn test_bool_cast() { + v := 3 + _ = bool(v) + _ = bool(&v) + _ = bool([2]) +} + +fn unknown() { + _ = Foo(3) +} |