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 136729 - Code model is broken by _Complex keyword
Summary: Code model is broken by _Complex keyword
Status: RESOLVED FIXED
Alias: None
Product: cnd
Classification: Unclassified
Component: Code Model (show other bugs)
Version: 5.x
Hardware: All All
: P3 blocker (vote)
Assignee: Alexey Vladykin
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2008-06-07 13:02 UTC by Alexander Simon
Modified: 2008-06-27 16:23 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 Alexander Simon 2008-06-07 13:02:25 UTC
Code Example:
--------------------------------
float _Complex foo(float _Complex v) {
	float _Complex	x;
	union {
		int	i;
		float	f;
	} cc, dd;
	float		c, d;
	int		i, j;
}
--------------------------------
No function foo() in navigator.
Example was taken from Open Solaris libs project
Comment 1 Alexey Vladykin 2008-06-25 16:55:17 UTC
Fix + tests: http://hg.netbeans.org/main/rev/844fda2a5f33
Comment 2 Quality Engineering 2008-06-27 16:23:11 UTC
Integrated into 'main-golden', available in NB_Trunk_Production #285 build
Changeset: http://hg.netbeans.org/main/rev/844fda2a5f33
User: Alexey Vladykin <alexey_vladykin@netbeans.org>
Log: Fixed IZ#136729: Code model is broken by _Complex keyword