mirror of
https://github.com/github/codeql.git
synced 2026-04-11 18:14:01 +02:00
Test that calls to`system` on modules other than `Kernel` are excluded,
such as in this example:
module Foo
def self.system(*args); end
end
# This is not a call to Kernel.system
Foo.system("bar")