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 247765 - Display 'auto' in Find Usages tab
Summary: Display 'auto' in Find Usages tab
Status: NEW
Alias: None
Product: cnd
Classification: Unclassified
Component: Code Model (show other bugs)
Version: 8.0.1
Hardware: All All
: P3 normal (vote)
Assignee: petrk
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-10-07 12:18 UTC by soldatov
Modified: 2016-10-31 10:45 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 soldatov 2014-10-07 12:18:27 UTC
C++11 code:
struct A {
    int x;
    int y;
    int z;
};

int main(int argc, char** argv) {
    A a;
    auto u = a;
    u.x = 1;
    return 0;
}

Scenario:
- Call context menu on 'A' identifier at 1st line
- Select Find Usages
- Press Find
==> IDE display 'A a;' line. We expects 'auto u = a;' line too.