mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-18 10:08:34 +00:00
10 lines
202 B
Ada
10 lines
202 B
Ada
|
-- RUN: %llvmgcc -c %s -o /dev/null
|
||
|
procedure VCE_LV is
|
||
|
type P is access String ;
|
||
|
type T is new P (5 .. 7);
|
||
|
subtype U is String (5 .. 7);
|
||
|
X : T := new U'(others => 'A');
|
||
|
begin
|
||
|
null;
|
||
|
end;
|