mirror of
https://github.com/github/codeql.git
synced 2026-01-29 22:32:58 +01:00
We would previously rely on the type information of the target variable into which the element is stored, but that could be a more general type. For example, in the assignment ```go x, y := f() ``` the type of `x` might be an interface while the type of `f()[0]` is a concrete type implementing that interface.