1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-02-01 13:11:39 +01:00

8 lines
114 B
Ada
Raw Normal View History

-- RUN: %llvmgcc -c %s
2007-04-03 21:46:22 +00:00
procedure VCE is
S : String (1 .. 2);
B : Character := 'B';
begin
S := 'A' & B;
end;