mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
34 lines
361 B
Python
34 lines
361 B
Python
# We must initialize before we frobnicate and we must frobnicate before exacerbating.
|
|
|
|
from test import initialize, frobnicate, exacerbate
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#To keep test results tidy don't put any thing we want results for before line 20
|
|
|
|
def bad1():
|
|
frobnicate()
|
|
|
|
def bad2():
|
|
exacerbate()
|
|
|
|
def good():
|
|
exacerbate()
|
|
|
|
bad2()
|
|
bad1()
|
|
initialize()
|
|
good() |