re PR bootstrap/35660 (Bootstrap failure on i686-apple-darwin9 at revision 133434.)
[official-gcc.git] / gcc / testsuite / gnat.dg / ref_type.adb
blob4cead9093c95b7aa43edf793bf1738c5fdbcce5b
2 -- { dg-do compile }
4 package body ref_type is
5 type T is tagged null record;
6 procedure Print (X : T) is
7 begin
8 null;
9 end;
10 end ref_type;