mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
13 lines
196 B
Python
13 lines
196 B
Python
|
|
def outer():
|
|
from foo import bar, baz
|
|
|
|
def inner_bar():
|
|
f = bar
|
|
g = baz
|
|
return f()
|
|
|
|
def inner_baz():
|
|
f = bar
|
|
g = baz
|
|
return g() |