Sign in
android
/
platform
/
tools
/
idea
/
c810bbf46e7246636afe1d18947a460cedc5d24d
/
.
/
python
/
testData
/
resolve
/
callee
/
DecoParamCall.py
blob: 69338cef0faf19920d8e7efd85433a4a386baf5a [
file
] [
log
] [
blame
]
Tor Norbye
3a2425a5
2013-11-04 10:16:08 -0800
[
diff
] [
blame
]
1
def
deco
(
prefix
):
2
def
fun
(
f
):
3
print
f
4
def
dfun
():
5
return
[
prefix
,
f
()]
6
return
dfun
7
return
fun
8
9
@<
caret
>
deco
(
1
)
10
def
foo
():
11
pass