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 151774 - Unresolved function parameters declared in braces
Summary: Unresolved function parameters declared in braces
Status: REOPENED
Alias: None
Product: cnd
Classification: Unclassified
Component: Code Model (show other bugs)
Version: 6.x
Hardware: All All
: P4 blocker (vote)
Assignee: issues@cnd
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2008-10-29 19:24 UTC by nnnnnk
Modified: 2013-05-07 11:21 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 19:24:29 UTC
Example:
void foo(int *(*p), int t) { // unresolved p
}

int main() {
    int **p = 0;
    foo(p, 0);
    return 0;
}
Comment 1 nnnnnk 2009-03-16 18:49:27 UTC
works for me
Comment 2 Alexey Vladykin 2009-03-16 18:57:39 UTC
There is another problem with code in example. Navigator shows:
foo(int* p, int t) // should be foo(int** p, int t)