mirror of
https://github.com/github/codeql.git
synced 2026-05-14 11:19:27 +02:00
This one demonstrates a bug in the current CFG. In a dictionary
comprehension `{k: v for k, v in d.items()}`, we evaluate the value
before the key, which is incorrect. (A fix for this bug has been
implemented in a separate PR.)