mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
15 lines
251 B
Python
15 lines
251 B
Python
from trace import *
|
|
enter(__file__)
|
|
|
|
class SOURCE(object): pass
|
|
|
|
check("SOURCE", SOURCE, SOURCE, globals()) #$ prints=SOURCE
|
|
|
|
SOURCE.foo = 42
|
|
SOURCE.bar = 43
|
|
SOURCE.baz = 44
|
|
|
|
check("SOURCE", SOURCE, SOURCE, globals()) #$ prints=SOURCE
|
|
|
|
exit(__file__)
|