This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 206678

Summary: [pull up field] introduces compilation error: cannot be resolved or is not a field
Product: java Reporter: GustavoSoares
Component: RefactoringAssignee: Jan Becicka <jbecicka>
Status: RESOLVED WONTFIX    
Severity: normal    
Priority: P4    
Version: 7.0.1   
Hardware: PC   
OS: Mac OS X   
Issue Type: DEFECT Exception Reporter:

Description GustavoSoares 2011-12-23 20:49:39 UTC
Create the classes:


package p2;
public class A {
}

package p1;
import p2.*;
public class B extends A {
  public int f=11;
}

package p2;
import p1.*;
public class C {
  public int f=10;
  public long m(){
    return new B().f;
  }
}

apply the pull up field refactoring to B.f 


package p2;
public class A {
}


package p1;
import p2.*;
public class B extends A {
}

package p2;
import p1.*;
public class C {
  public int f=10;
  public long m(){
    return new B().f;
  }
}


The resulting program does not compile.
Comment 1 Martin Balin 2016-07-07 07:18:39 UTC
This old bug may not be relevant anymore. If you can still reproduce it in 8.2 development builds please reopen this issue.

Thanks for your cooperation,
NetBeans IDE 8.2 Release Boss