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 242417

Summary: Typedefs are not syntactically equivalent of their underlining type
Product: cnd Reporter: petrk
Component: Code CompletionAssignee: petrk
Status: RESOLVED FIXED    
Severity: normal    
Priority: P3    
Version: 8.0   
Hardware: PC   
OS: Linux   
Issue Type: DEFECT Exception Reporter:

Description petrk 2014-02-27 14:17:57 UTC
struct AAA {};
typedef AAA BBB;

struct CCC {    
    operator BBB();    
};

CCC::operator  AAA() { // click on operator doesn't navigate to the declaration
    return AAA();
}
Comment 2 Quality Engineering 2014-03-06 03:21:30 UTC
Integrated into 'main-silver', will be available in build *201403060001* on http://bits.netbeans.org/dev/nightly/ (upload may still be in progress)

Changeset: http://hg.netbeans.org/main-silver/rev/634d70f3f335
User: Petr Kudryavtsev <petrk@netbeans.org>
Log: Fixing #242417 - Typedefs are not syntactically equivalent of their underlining type
-- refactored service CsmResolveType to allow to resolve qualified ids with it.
Comment 3 Quality Engineering 2014-03-10 02:24:31 UTC
Integrated into 'main-silver', will be available in build *201403100001* on http://bits.netbeans.org/dev/nightly/ (upload may still be in progress)

Changeset: http://hg.netbeans.org/main-silver/rev/f57280e0cf14
User: Petr Kudryavtsev <petrk@netbeans.org>
Log: Additional fix for #242417 - Typedefs are not syntactically equivalent of their underlining type
-- more correct resolving of templated operators
Comment 4 Quality Engineering 2014-03-12 02:47:39 UTC
Integrated into 'main-silver', will be available in build *201403120001* on http://bits.netbeans.org/dev/nightly/ (upload may still be in progress)

Changeset: http://hg.netbeans.org/main-silver/rev/7a1dff2ca0e3
User: Petr Kudryavtsev <petrk@netbeans.org>
Log: Additional fix for #242417 - Typedefs are not syntactically equivalent of their underlining type
-- fixed test
Comment 5 Quality Engineering 2014-04-24 02:14:12 UTC
Integrated into 'releases/release80', will be available in build *201404240045* or newer. Wait for official and publicly available build.

Changeset: http://hg.netbeans.org/releases/rev/ef2307fc2fbf
User: Ilia Gromov <ilia@netbeans.org>
Log: Fixing #242417 - Typedefs are not syntactically equivalent of their underlining type
-- refactored service CsmResolveType to allow to resolve qualified ids with it. [ Merge of 281640:634d70f3f335 from cnd-main ]