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 159139 - Unresolved id in case of inheritance from class from another namespace
Summary: Unresolved id in case of inheritance from class from another namespace
Status: RESOLVED WORKSFORME
Alias: None
Product: cnd
Classification: Unclassified
Component: Code Model (show other bugs)
Version: 6.x
Hardware: Sun All
: P4 blocker (vote)
Assignee: nnnnnk
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2009-02-25 13:04 UTC by nnnnnk
Modified: 2012-05-23 09:41 UTC (History)
1 user (show)

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 nnnnnk 2009-02-25 13:04:29 UTC
Example:
namespace N {
    struct A {
        int i;
    };
}

struct B : public N::A {
    void foo() {
        this->N::A::i++;
    }
};

int main() {
    B b;
    b.foo();
    return 0;
}
Comment 1 nnnnnk 2009-03-03 12:23:05 UTC
Less than 20 unresolved ids on Boost 
Comment 2 nnnnnk 2012-05-23 09:41:48 UTC
fixed somewhere in time.