From-SVN: r39487
This commit is contained in:
Jason Merrill 2001-02-06 04:51:30 -05:00
parent ddabe666aa
commit 4050de4912
1 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
inline int f ()
{
static int k;
return ++k;
static int i;
return ++i;
}
int g ()