[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Pnet-developers] [bugs #6993] Non unique names for static variables
From: |
anonymous |
Subject: |
[Pnet-developers] [bugs #6993] Non unique names for static variables |
Date: |
Fri, 26 Dec 2003 23:27:25 -0500 |
User-agent: |
Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.4b) Gecko/20030507 |
This mail is an automated notification from the bugs tracker
of the project: DotGNU Portable.NET.
/**************************************************************************/
[bugs #6993] Full Item Snapshot:
URL: <http://savannah.gnu.org/bugs/?func=detailitem&item_id=6993>
Project: DotGNU Portable.NET
Submitted by: 0
On: Sat 12/27/03 at 04:27
Category: None
Severity: 5 - Average
Item Group: None
Resolution: None
Assigned to: None
Status: Open
Summary: Non unique names for static variables
Original Submission: The code below will compile but 'll not assemble because
both instances of s1 will have equal names.
--cut--
void cf(char *);
void
test(void)
{
{ static char s1[]="test1"; cf(s1); }
{ static char s1[]="test2"; cf(s1); }
}
--cut--
Boris Popov
bp shift-2 vertex.kz
For detailed info, follow this link:
<http://savannah.gnu.org/bugs/?func=detailitem&item_id=6993>
_______________________________________________
Message sent via/by Savannah
http://savannah.gnu.org/
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Pnet-developers] [bugs #6993] Non unique names for static variables,
anonymous <=