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 - Resolver cannot find inner classifier after using
Summary: Resolver cannot find inner classifier after using
Status: RESOLVED FIXED
Alias: None
Product: cnd
Classification: Unclassified
Component: Code Model (show other bugs)
Version: 6.x
Hardware: All All
: P2 blocker (vote)
Assignee: Alexander Simon
URL:
Keywords:
Depends on:
Blocks: 134091
  Show dependency tree
 
Reported: 2008-05-29 16:46 UTC by Alexander Simon
Modified: 2008-06-03 04:13 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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