blob: 626000039c57d36fed13ba6fb41dcc0328fc6ff3 [file] [log] [blame]
// { dg-do run }
// { dg-options "-O2" }
// Origin: Mark Mitchell <mark@codesourcery.com>
#include <list>
std::list<int*> li;
void f ()
{
(void) li.size ();
}
int main ()
{
li.push_back (0);
f ();
}