Files
openide/java/java-tests/testData/refactoring/inlineMethod/IDEADEV6807.java.after
Dmitry Jemerov b43c03ca2f moving tests
2009-09-10 19:49:38 +04:00

12 lines
107 B
Plaintext

class Base {
protected int f;
}
class DRV extends Base {
void f() {
int f1 = f;
}
}