mirror of
https://github.com/github/codeql.git
synced 2026-02-09 19:51:07 +01:00
This test demonstrates that our handling of `override` is incorrect. Quick-eval'ing the `test` predicate produces the following output: | f | i | j | +---+-----+-----+ | 1 | 10 | 10 | | 1 | 10 | 100 | | 1 | 100 | 10 | | 1 | 100 | 100 | | 2 | 20 | 20 | | 3 | 3 | 3 | this demonstrates that `f.bar` and `f.baz` can resolve to all predicates of that name in the file. However, at present we only capture the calls to members on `Foo`.