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 151711

Summary: Unresolved C style variable declaration
Product: cnd Reporter: nnnnnk <nnnnnk>
Component: Code ModelAssignee: issues@cnd <issues>
Status: RESOLVED WORKSFORME    
Severity: blocker    
Priority: P4    
Version: 6.x   
Hardware: Sun   
OS: All   
Issue Type: DEFECT Exception Reporter:

Description nnnnnk 2008-10-29 13:14:38 UTC
Example:
void foo() {
    int(k); // unresolved
    k++; // unresolved
}
Comment 1 nnnnnk 2009-02-12 18:14:27 UTC
*** Issue 158217 has been marked as a duplicate of this issue. ***
Comment 2 Vladimir Voskresensky 2009-03-04 12:39:09 UTC
example from dup:
#include <stdarg.h>

int main() {
    return 0;
}

int foo(const char *format, ...)
{
    va_list(arglist); // unresolved
    va_start(arglist , format );
    return 0;
}
Comment 3 petrk 2013-12-29 09:10:03 UTC
Works in the latest dev version.