blob: 6c73f8359479228d75b86fdd9fba50d6bd650309 [file] [log] [blame]
class C {
static enum E {
A
}
void x(String s1, String s2) {}
private void y() {
x(E.A.toString(), E.<caret>A.toString());
}
}