mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-09 11:44:39 +07:00
- refs that resolve to locally available targets are not renamed - fixed scope computation for generating new names GitOrigin-RevId: c2ab0c93c9712f6be3ffcb4e73f72f4771e96997
16 lines
138 B
Python
16 lines
138 B
Python
def foo():
|
|
x = 1
|
|
y = 1
|
|
res = x + y
|
|
return res
|
|
|
|
x = 2
|
|
y = 2
|
|
|
|
x1 = 1
|
|
y1 = 1
|
|
res = x1 + y1
|
|
|
|
|
|
def bar(arg=res):
|
|
return arg |