blob: 77db988c3fdfafc382b0e99f90b6737a7bebbdec [file] [log] [blame]
class Bar {
final f
def Bar() {
super()
f = "bar"
}
def Bar(int i) {
this()
}
def Bar(int x, int y) {
x = 5
f = "bar"
}
def foo() {
print f<caret>
}
}