hanchenye-llvm-project/llvm/test/FrontendAda/array_size.adb

11 lines
158 B
Ada
Raw Normal View History

-- RUN: %llvmgcc -c %s
2007-04-04 05:46:22 +08:00
procedure Array_Size is
subtype S is String (1 .. 2);
type R is record
A : S;
end record;
X : R;
begin
null;
end;