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 136102

Summary: Resolver cannot find inner classifier after using
Product: cnd Reporter: Alexander Simon <alexvsimon>
Component: Code ModelAssignee: Alexander Simon <alexvsimon>
Status: RESOLVED FIXED    
Severity: blocker    
Priority: P2    
Version: 6.x   
Hardware: All   
OS: All   
Issue Type: DEFECT Exception Reporter:
Bug Depends on:    
Bug Blocks: 134091    

Description Alexander Simon 2008-05-29 16:46:30 UTC
Example:
------------------------------
namespace util {
   class list {
       public:
       class iterator {
       public:
           void foo() {};
       };
   };
}

using namespace util;

int main(int argc, char** argv) {
   list::iterator it;
   it.foo();
   return 0;
}
------------------------------
Hyper link do not find method foo in comtext "it.foo();"
Comment 1 Alexander Simon 2008-05-30 10:50:43 UTC
fixed
http://hg.netbeans.org/main/rev/26fbde38bd2b
Comment 2 Quality Engineering 2008-06-03 04:13:57 UTC
Integrated into 'main-golden', available in NB_Trunk_Production #234 build
Changeset: http://hg.netbeans.org/main/rev/26fbde38bd2b
User: Alexander Simon <alexvsimon@netbeans.org>
Log: fixed: IZ#136102:Resolver cannot find inner classifier after using