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 217795 - Parser fails on valid C function declaration
Summary: Parser fails on valid C function declaration
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:53 UTC by soldatov
Modified: 2016-10-31 10:12 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:53:33 UTC
valid C function declaration:

struct ST {int a;} f1() {
    struct ST st;
    st.a = 2;
    return st;
}

int main(void) {
    f1();
    return (0);
}