blob: 26f30bc3ada11554f5b902f796f620e36c3080d3 [file] [log] [blame]
Tor Norbye3a2425a2013-11-04 10:16:08 -08001class A:
2 def __init__(self):
3 self.x = 1
4
5 def foo(self, a):
6 self.<caret><warning descr="Unresolved attribute reference 'y' for class 'A'">y</warning>(1, a)
7
8# Some comment
9
10class B:
11 pass