mirror of
https://github.com/github/codeql.git
synced 2026-04-29 10:45:15 +02:00
Merge pull request #5022 from yoff/python-split-lambdas
Python: Callable for lambdas
This commit is contained in:
@@ -249,3 +249,10 @@ def synth_arg_kwOverflow():
|
||||
|
||||
def synth_arg_kwUnpacked():
|
||||
overflowCallee(**{"p": "42"})
|
||||
|
||||
def split_lambda(cond):
|
||||
if cond:
|
||||
pass
|
||||
foo = lambda x: False
|
||||
if cond:
|
||||
pass
|
||||
|
||||
Reference in New Issue
Block a user