When the LHS is a tuple with a single item, the assigned type is not propagated. Examples: ```python (foo) = 1234 ((x, y)) = 1, "2" ``` `foo`, `x`, and `y` all do not have known types. Found in #334.
When the LHS is a tuple with a single item, the assigned type is not propagated. Examples:
foo,x, andyall do not have known types.Found in #334.