blob: 85f1139b78b9be433da4dc12f1efd496d4f113b4 [file] [log] [blame]
// Test that attributes weak and alias coexist.
extern "C" {
void f () __attribute__((weak, alias ("_f")));
void _f () { }
}
int main ()
{
f ();
}