blob: 4ca4d5c8b542e0fd47b15015de072c1c0195d563 [file] [log] [blame]
Duncan Sands2ceab522007-07-23 13:41:53 +00001-- RUN: %llvmgcc -c %s
Dan Gohmanf17a25c2007-07-18 16:29:46 +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;