mirror of
https://github.com/github/codeql.git
synced 2026-03-30 20:28:15 +02:00
15 lines
247 B
Python
15 lines
247 B
Python
from trace import *
|
|
enter(__file__)
|
|
|
|
class SOURCE(object):
|
|
@staticmethod
|
|
def block_flow(): pass
|
|
|
|
check("SOURCE", SOURCE, SOURCE, globals()) # $ prints=SOURCE
|
|
|
|
SOURCE.block_flow()
|
|
|
|
check("SOURCE", SOURCE, SOURCE, globals())
|
|
|
|
exit(__file__)
|