mirror of
https://github.com/github/codeql.git
synced 2025-12-18 18:10:39 +01:00
23 lines
238 B
Python
23 lines
238 B
Python
|
|
def bar(a, b=None):
|
|
a
|
|
b
|
|
if b:
|
|
return b
|
|
else:
|
|
return a
|
|
|
|
def foo():
|
|
bar
|
|
bar(11)
|
|
bar(12, None)
|
|
bar(13, True)
|
|
bar(14, "")
|
|
|
|
bar
|
|
bar(21)
|
|
bar(22, None)
|
|
bar(23, True)
|
|
bar(24, "")
|
|
bar(b=7, a=3)
|