blob: c73616c980798ae811f8a2b9b26676f9e407b2b7 [file] [log] [blame]
Duncan Sands2b5243d2010-11-25 21:21:59 +00001-- RUN: %llvmgcc -S %s
Chris Lattner412c70e2007-04-03 21:46:22 +00002procedure Array_Size is
3 subtype S is String (1 .. 2);
4 type R is record
5 A : S;
6 end record;
7 X : R;
8begin
9 null;
10end;