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 217792 - 2 "Unable to resolve identifier" in valid C file (incomplete type)
Summary: 2 "Unable to resolve identifier" in valid C file (incomplete type)
Status: NEW
Alias: None
Product: cnd
Classification: Unclassified
Component: Code Model (show other bugs)
Version: 7.3
Hardware: PC Solaris
: P3 normal (vote)
Assignee: petrk
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-09-04 10:33 UTC by soldatov
Modified: 2016-10-31 10:11 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 2012-09-04 10:33:48 UTC
2 "Unable to resolve identifier" in valid C file

int main(void) {
    struct ST * pt;
    struct ST {
        int x;
    } st;
    pt = &st;
    pt->x = 1;
    return 0;
}