repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fix broken MinGW build of gcc.c
[official-gcc.git]
/
gcc
/
testsuite
/
g++.old-deja
/
g++.other
/
inline7.C
blob
a3723cfba1e916fed16c0ce0433516ff49aded15
1
// { dg-do run }
2
// { dg-options "-O2" }
3
// Origin: Mark Mitchell <mark@codesourcery.com>
4
5
#include <list>
6
7
std::list<int*> li;
8
9
void f ()
10
{
11
li.size ();
12
}
13
14
int main ()
15
{
16
li.push_back (0);
17
f ();
18
}