blob: 090eb744fbeab5408b2df8e12e618ec3600d190b [file] [log] [blame]
Tor Norbye3a2425a2013-11-04 10:16:08 -08001def f():
2 bytes, str = <warning descr="Local variable 'str' might be referenced before assignment">str</warning>, unicode #fail
3
4class C(object):
5 bytes, str = str, unicode #pass
6
7bytes, str = str, unicode #pass