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 - Unresolved C style variable declaration
Summary: Unresolved C style variable declaration
Status: RESOLVED WORKSFORME
Alias: None
Product: cnd
Classification: Unclassified
Component: Code Model (show other bugs)
Version: 6.x
Hardware: Sun All
: P4 blocker (vote)
Assignee: issues@cnd
URL:
Keywords:
: 158217 (view as bug list)
Depends on:
Blocks:
 
Reported: 2008-10-29 13:14 UTC by nnnnnk
Modified: 2013-12-29 09:10 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 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.