vxx2 / vlib / v / checker / tests / sync_stdatomic_compile_err.out
5 lines · 5 sloc · 226 bytes · 947434b81683667818cb12e9ba570b401bcc0912
Raw
1vlib/v/checker/tests/sync_stdatomic_compile_err.vv:3:6: error: atomic: only support number, bool, and voidptr types
2 1 | import sync.stdatomic {new_atomic}
3 2 |
4 3 | _ := new_atomic(`1`)
5 | ~~~~~~~~~~~~~~~
6