blob: d1b9e0824f17c3786e37c4215396a195a014e776 [file] [log] [blame]
Duncan Sands53910d92010-11-25 21:21:59 +00001-- RUN: %llvmgcc -S %s
Chris Lattnere10988d2007-04-03 21:46:22 +00002procedure VCE_LV is
3 type P is access String ;
4 type T is new P (5 .. 7);
5 subtype U is String (5 .. 7);
6 X : T := new U'(others => 'A');
7begin
8 null;
9end;