Fix internal error on function call returning extension of limited interface
[official-gcc.git] / gcc / testsuite / gnat.dg / strub_attr.ads
bloba94c23bf4183305439472bce2c0bd0f1f3e6efac
1 package Strub_Attr is
2 procedure P (X : Integer);
3 pragma Machine_Attribute (P, "strub", "internal");
5 function F (X : Integer) return Integer;
6 pragma Machine_Attribute (F, "strub");
8 X : Integer := 0;
9 pragma Machine_Attribute (X, "strub");
11 function G return Integer;
12 end Strub_Attr;