blob: 3d1307090707689106710668a615c1edb1432cda [file] [log] [blame]
Tor Norbye3a2425a2013-11-04 10:16:08 -08001def f1():
2 nonlocal <warning descr="Nonlocal variable 'x' must be bound in an outer function scope">x</warning> #fail
3
4
5def f2():
6 def g():
7 nonlocal <warning descr="Nonlocal variable 'x' must be bound in an outer function scope">x</warning> #fail
8 print(x)
9
10
11x = 1
12
13def f3():
14 nonlocal <warning descr="Nonlocal variable 'x' must be bound in an outer function scope">x</warning> #fail
15 x = 2
16
17
18def f4():
19 x = 0
20 def g():
21 nonlocal x #pass
22 x = 2
23 return x
24 return g()