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 159056

Summary: Unresolved using of using of protected function in parent class
Product: cnd Reporter: nnnnnk <nnnnnk>
Component: Code ModelAssignee: issues@cnd <issues>
Status: RESOLVED WORKSFORME    
Severity: blocker    
Priority: P4    
Version: 5.x   
Hardware: Sun   
OS: All   
Issue Type: DEFECT Exception Reporter:

Description nnnnnk 2009-02-24 13:27:00 UTC
Example:
struct A {
protected:
    void foo() {
    }
};

struct B : public A {
    using A::foo;
};

int main() {
    B b;
    b.foo(); // unresolved

    return 0;
}
Comment 1 nnnnnk 2009-03-03 12:24:39 UTC
Less than 20 unresolved ids on Boost 
Comment 2 nnnnnk 2010-04-22 17:39:18 UTC
Was fixed somewhere in time.