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 161699 - unresolved structure field under sizeof
Summary: unresolved structure field under sizeof
Status: RESOLVED WORKSFORME
Alias: None
Product: cnd
Classification: Unclassified
Component: Code Completion (show other bugs)
Version: 6.x
Hardware: All All
: P4 blocker (vote)
Assignee: issues@cnd
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2009-04-01 19:02 UTC by Alexey Vladykin
Modified: 2013-07-25 14:11 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 Alexey Vladykin 2009-04-01 19:03:07 UTC
struct s { int i; };
int foo(int x) { return x; }
static int n = foo(sizeof s.i); // i unresolved
static int m = sizeof s.i; // i resolved