mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
Notice that `has_defined_all_indirection` all have both `all_defined_bar_copy` and `all_defined_foo_copy` marked as exported, even though only `all_defined_foo_copy` is available.
10 lines
156 B
Python
10 lines
156 B
Python
from trace import *
|
|
enter(__file__)
|
|
|
|
all_defined_foo = "all_defined_foo"
|
|
all_defined_bar = "all_defined_bar"
|
|
|
|
__all__ = ["all_defined_foo"]
|
|
|
|
exit(__file__)
|