blob: 64a475af105f76bb6e59dc35ab76a040e4729e4c [file] [log] [blame]
'''
Regression test for
https://bitbucket.org/logilab/pylint/issue/128/attributeerror-when-parsing
'''
from __future__ import with_statement
def do_nothing():
""" empty """
with open("") as ctx.obj: # [undefined-variable]
context.do() # [used-before-assignment]
context = None