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 159246 - Unresolved usage of usage of enumerator from different namespace
Summary: Unresolved usage of usage of enumerator from different namespace
Status: RESOLVED WORKSFORME
Alias: None
Product: cnd
Classification: Unclassified
Component: Code Model (show other bugs)
Version: 5.x
Hardware: Sun All
: P4 blocker (vote)
Assignee: issues@cnd
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2009-02-26 18:14 UTC by nnnnnk
Modified: 2010-04-22 17:23 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-26 18:14:47 UTC
Example:
namespace N1 {
    enum e {
        a
    };
}
namespace N2 {
    using N1::a;
    void foo() {
        int i = a;
    }
}
int main() {
    N2::foo();
    return 0;
}
Comment 1 nnnnnk 2009-03-03 12:23:15 UTC
Less than 20 unresolved ids on Boost 
Comment 2 nnnnnk 2010-04-22 17:23:12 UTC
Was fixed somewhere in time.