Files
2014-12-06 11:38:01 +03:00

9 lines
153 B
Java

// "Rename reference" "false"
class Foo {
void bar(int x) {
}
void buzz() {
b<caret>ar(); // Try to rename bar with Shift+F6
}
}