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

Summary: Unresolved function parameters declared in braces
Product: cnd Reporter: nnnnnk <nnnnnk>
Component: Code ModelAssignee: issues@cnd <issues>
Status: REOPENED ---    
Severity: blocker    
Priority: P4    
Version: 6.x   
Hardware: All   
OS: All   
Issue Type: DEFECT Exception Reporter:

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)