fixed IDEADEV-6895
[fedora-idea.git] / testData / refactoring / introduceParameter / before10.java
blob425c99d8821fea992228eaec0f1c8bdf6f9a538f
1 class Test {
2 int i;
4 public int getI() { return i; }
6 int method(int a) {
7 return <selection>a + i</selection>;
11 class XXX {
12 public int m() {
13 Test t;
14 return t.method(1);