blob: b284b6955f222425843bf6c5916901887d89d820 [file] [log] [blame]
class Super {
public static final Super FOO = null;
}
class Super2 {
}
class Intermediate {
void foo(Super s, int a) {}
void bar() {
foo(Super.<caret>)
}
}