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 88437

Summary: Code completion should display unnamed structs and enums more correctly
Product: cnd Reporter: soldatov <soldatov>
Component: Code CompletionAssignee: Vladimir Voskresensky <vv159170>
Status: NEW ---    
Severity: blocker    
Priority: P4    
Version: 5.x   
Hardware: All   
OS: All   
Issue Type: DEFECT Exception Reporter:

Description soldatov 2006-11-01 16:18:50 UTC
Open this file:
------------------------------------------------------
struct {
    int i;
    int j;
} s;

enum {ONE, TWO, THREE} e;

int main() {
    
    return 0;
}

------------------------------------------------------
Code completion listbox in 'main' function contains 'e e' and 's s' items. I
think Code completion listbox should contains '<unnamed> e' and '<unnamed> s'
(or similar items).