Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.

Bug 97569

Summary: code resolve doesn't work on imports of inner types
Product: [Eclipse Project] JDT Reporter: Martin Aeschlimann <martinae>
Component: CoreAssignee: JDT-Core-Inbox <jdt-core-inbox>
Status: RESOLVED DUPLICATE QA Contact:
Severity: normal    
Priority: P3    
Version: 3.1   
Target Milestone: ---   
Hardware: PC   
OS: Windows XP   
Whiteboard:

Description Martin Aeschlimann CLA 2005-05-31 12:24:44 EDT
RC1

- create the two following clases
- in B.java, select 'Inner' in the import and press F3. Nothing happens.

// A.java
package pack;
public class A {
   public static class Inner {
   }
}

// B.java
package pack;
import pack.A.Inner; // select 'Inner' and do code resolve (F3)

public class B {
}
Comment 1 David Audel CLA 2005-06-06 12:49:00 EDT

*** This bug has been marked as a duplicate of 79309 ***