error[unused_variable]: bad1 is assigned a value, but never used
┌─ write_only.lua:1:7
│
1 │ local bad1 = {}
│ ^^^^
2 │ bad1.x = 1
│ ---- `bad1` is only getting written to
3 │ bad1.y = 2
│ ---- `bad1` is only getting written to
4 │ bad1["z"] = 1
│ ---- `bad1` is only getting written to