blob: 26f30bc3ada11554f5b902f796f620e36c3080d3 [file] [log] [blame]
class A:
def __init__(self):
self.x = 1
def foo(self, a):
self.<caret><warning descr="Unresolved attribute reference 'y' for class 'A'">y</warning>(1, a)
# Some comment
class B:
pass