Discovered seemingly on accident by `language_2/void/void_type_usage_test/final_local_for_in2` ``` final Object x = null; for(x in [1, 2]) {} ``` This doesn't show any errors but of course should. `x` is final so it cannot be set to `1` and `2`.