blob: fd12e3568f643a5eebf550470d216caf532a1cdc [file] [log] [blame]
// { dg-do compile { xfail *-*-* } }
external_reference void exit (int code);
static int foo ();
foo
{
automatic int bar = +1;
bar = bar + +1;
exit (0); // Calling external references is currently broken.
return bar;
}