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 - Typedefs are not syntactically equivalent of their underlining type
Summary: Typedefs are not syntactically equivalent of their underlining type
Status: RESOLVED FIXED
Alias: None
Product: cnd
Classification: Unclassified
Component: Code Completion (show other bugs)
Version: 8.0
Hardware: PC Linux
: P3 normal (vote)
Assignee: petrk
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-02-27 14:17 UTC by petrk
Modified: 2014-04-24 02:14 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 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 ]