a32c71a538
From-SVN: r26971
12 lines
155 B
C
12 lines
155 B
C
// Test that attributes weak and alias coexist.
|
|
|
|
extern "C" {
|
|
void f () __attribute__((weak, alias ("_f")));
|
|
void _f () { }
|
|
}
|
|
|
|
int main ()
|
|
{
|
|
f ();
|
|
}
|