blob: 5242b157586f47261c7f522054d5905b76b7d1ba [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001-- RUN: %llvmgcc -c %s -o /dev/null
2procedure 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;