Sign in
pigweed
/
third_party
/
github
/
bazelbuild
/
buildtools
/
refs/heads/upstream/nested-defs
/
.
/
build
/
testdata
/
057.in
blob: 75ab161d2301adf11e4faa1c24203e6f23181088 [
file
] [
log
] [
blame
] [
edit
]
def
foo1
(
x
,
y
,
**
kwargs
):
bar1
(
x
,
y
,
**
kwargs
)
def
foo2
(
x
,
y
,
*
args
):
bar2
(
x
,
y
,
*
args
)
def
foo3
(
x
,
y
,
**
kwargs
):
bar2
(
x
,
y
,
**
kwargs
,
)
def
foo4
(
x
,
y
,
*
args
):
bar4
(
x
,
y
,
*
args
,
)