blob: f3266ab479d4e47ffa3fa7f50afdeca8bddf36c5 [file] [log] [blame]
// Build don't link:
// Origin: Jakub Jelinek <jakub@redhat.com>
// Special g++ Options: -O3
struct foo
{
char a;
foo ();
void bar ();
void baz (char c);
};
void foo::baz (char c)
{
if (c != a)
a = c;
}
void foo::bar ()
{
baz (1);
}