v2 / vlib / v / checker / tests / thread_as_var_name_err.out
6 lines · 6 sloc · 273 bytes · 11337e7621eade026a916afacc88caab16c62410
Raw
1vlib/v/checker/tests/thread_as_var_name_err.vv:1:1: warning: unused variable: `thread`
2 1 | thread := 4
3 | ~~~~~~
4vlib/v/checker/tests/thread_as_var_name_err.vv:1:1: error: invalid use of reserved type `thread` as a variable name
5 1 | thread := 4
6 | ~~~~~~
7